/* Настройки страницы */
:root {
  --font-family: "Montserrat", sans-serif;
  --primary-color: #237DCC;
  --primary-hover: #1a6bb3;
  --secondary-color: #f547b4;
  --secondary-hover: #ff0066;
  --success-color: #9dc989;
  --success-hover: #80b866;
  --warning-color: #f68071;
  --background-light: #f6fbff;
  --card-background: #ffffff;
  --border-color: #eaeaea;
  --text-primary: #2e3a53;
  --text-secondary: #666666;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 8px;
}

body {
    background: var(--background-light);
    font-family: var(--font-family);
    color: var(--text-primary);
}

.breadcrumbs a {
    font-weight: 400;
    font-size: 14px;
    color: rgba(30,30,30,0.6);
}

.page-header h1 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 32px;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(35,125,204,0.1);
}

/* Кнопки управления */
.curator_sections-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.curator_sections-nav button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    border: 1px solid rgba(35, 125, 204, 0.05);
    border-radius: var(--radius-md);
    background: rgba(35, 125, 204, 0.05);
    transition: all .3s;
}

.curator_sections-nav button::before {
    content: '';
    display: inline-block;
    margin-right: 12px;
}

.curator_sections-nav button:hover,
.curator_sections-nav button:focus,
.curator_sections-nav button.active {
    border: 1px solid transparent;
    background: rgba(35, 125, 204, 0.17);
}

.curator_section-answers::before {
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.1702 10.1278C19.1702 15.1219 15.1217 19.1703 10.1276 19.1703H1.08581C1.08581 19.1703 2.65237 15.4087 2.02542 14.1475C1.42353 12.9366 1.08508 11.5718 1.08508 10.1278C1.08508 5.1337 5.13357 1.08521 10.1276 1.08521M18.2834 1.96804C19.4606 3.14515 19.4606 5.05364 18.2834 6.23075C17.1063 7.40786 15.1979 7.40786 14.0208 6.23075C12.8436 5.05364 12.8436 3.14515 14.0208 1.96804C15.1979 0.79093 17.1063 0.79093 18.2834 1.96804Z' stroke='%23237DCC' stroke-width='2.17021' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") no-repeat center / contain;
}

.curator_section-answers::after {
    content: attr(unread);
    display: block;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 100%;
    background: linear-gradient(90deg, var(--warning-color) 0%, var(--secondary-color) 100%);
}

.curator_section-recommendation::before {
    width: 16px;
    height: 19px;
    background: url("data:image/svg+xml,%3Csvg width='19' height='21' viewBox='0 0 19 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.08508 19.8937C1.08508 15.8541 4.3433 12.5793 8.36251 12.5793C8.71546 12.5793 9.0626 12.6046 9.40214 12.6534M12.521 5.26487C12.521 7.57324 10.6592 9.44454 8.36251 9.44454C6.06581 9.44454 4.20398 7.57324 4.20398 5.26487C4.20398 2.95651 6.06581 1.08521 8.36251 1.08521C10.6592 1.08521 12.521 2.95651 12.521 5.26487ZM10.0153 19.8937L12.1206 19.4705C12.3042 19.4336 12.396 19.4151 12.4815 19.3814C12.5575 19.3515 12.6297 19.3126 12.6966 19.2657C12.772 19.2128 12.8382 19.1464 12.9706 19.0133L17.2927 14.6691C17.8669 14.092 17.8669 13.1564 17.2927 12.5793C16.7187 12.0022 15.7877 12.0022 15.2135 12.5793L10.8913 16.9234C10.759 17.0566 10.6927 17.123 10.6401 17.1989C10.5935 17.2661 10.5549 17.3387 10.525 17.4151C10.4915 17.5011 10.4732 17.5933 10.4364 17.7778L10.0153 19.8937Z' stroke='%23237DCC' stroke-width='2.17021' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") no-repeat center / contain;
}

/* Секции */
.curator_messageSections:not(.editable),
.curator_recomendation:not(.editable) {
    display: none;
}

.curator_messageSections:not(.editable).active,
.curator_recomendation:not(.editable).active {
    display: block;
}

/* Секции с сообщениями */
.curator_messages {
    display: flex;
    align-items: start;
    gap: 24px;
}

.curator_messageSections {
    flex: 1 1 60%;
}

.curator_sectionHeader {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
    color: #1e1e1e;
}

.curator_msgs {
    margin-bottom: 50px;
}

.curator_list {
    padding: 0;
    list-style: none;
}

.curator_msg {
    --arrow_color: rgba(35,125,204,0.5);
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 10px;
    background: #ebf4fc;
    border-radius: var(--radius-sm);
    transition: all .3s;
}

.unread .curator_msg {
    --arrow_color: rgba(245,71,180,0.5);
    margin-left: 8px;
    width: calc(100% - 8px);
    background: rgba(245, 71, 180, 0.05);
}

.curator_msg::before {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    height: 100%;
    width: 5px;
    background: var(--primary-color);
    border-radius: 10px;
}

.unread .curator_msg::before {
    display: block;
    background: var(--secondary-color);
}

.curator_msg:hover {
    cursor: pointer;
    background: #e1effc;
}

.unread .curator_msg:hover {
    background: rgba(245, 71, 180, 0.1);
}

.curator_msg.active {
    transform: translatex(5px);
}

.curator_msg.active::before {
    display: block;
}

.curator_msg > * {
    flex: 1 1 10%;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-primary);
}

.curator_userId {
    flex:  0 1 120px;
}

.curator_msg .curator_userInfo {
    display: flex;
    align-items: center;
}

.curator_msg .curator_userInfo img {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background: #c6e3ff;
}

.unread .curator_msg .curator_userInfo img {
    background: rgba(245, 71, 180, 0.1);
}

.curator_userDateAdd {
    font-weight: 500;
    font-size: 14px;
}

.curator_arrow {
    flex: 0 0 30px;
}

.curator_fullMessage {
    flex: 1 1 35%;
}

/* Полное сообщение */
.curator_fullMessage {
    display: none;
}

.curator_fullMessage.active {
    display: block;
}

.curator_fullMessage .html-content {
    padding: 30px;
    border-radius: var(--radius-sm);
    background: #ebf4fc;
}

.curator_showMessage .curator_userInfo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.curator_fullMessage .html-content img {
    width: 55px;
    height: 55px;
    background: #dbebf8;
    border-radius: 50px;
}

.curator_userData span {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-primary);
}

.curator_userData .curator_dateAdd {
    font-weight: 500;
    font-size: 14px;
}

.curator_lessonTitle {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-primary);
    opacity: .5;
}

.curator_userMessage {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
}


.curator_messageControls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.curator_goToMsg {
    padding: 8px 15px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all .3s;
}

.curator_goToMsg:hover {
    background: #2E3A53;
    text-decoration: none;
}

.curator_changeStatus {
    padding: 8px 15px;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-primary);
    background: none;
    border: 1px solid rgba(46, 58, 83, 0.29);
    border-radius: var(--radius-sm);
    transition: all .3s;
}

.curator_changeStatus:hover {
    color: #fff;
    background: #2E3A53;
}

/* Секция с рекомендациями */
.curator_addRecomendation {
    margin-bottom: 36px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 14px;
    color: #39663c;
    background: var(--success-color);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.curator_addRecomendation:hover {
    background: var(--success-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Модальные окна - унифицированный стиль */
.recModalWrapper,
.delete-confirmation-overlay,
.edit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.recModalAdd,
.delete-confirmation-modal,
.edit-modal {
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
}

.recModalAdd {
    max-width: 1100px;
    max-height: calc(100% - 80px);
    overflow: hidden;
}

.edit-modal {
    max-height: 80vh;
    overflow-y: auto;
}

.recModal_close,
.edit-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #a0a0a0;
    cursor: pointer;
    padding: 5px;
    transition: all .3s;
}

.edit-modal-close {
    font-size: 24px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.recModal_close:hover,
.edit-modal-close:hover {
    color: var(--secondary-color);
    background: #f5f5f5;
}

.subScroll {
    display: block;
    padding-right: 20px;
    overflow-y: scroll;
    max-height: calc(80vh - 100px);
}

.subScroll::-webkit-scrollbar {
    width: 4px;
}

.subScroll::-webkit-scrollbar-track {
    background: #EBF4FC;
    border-radius: var(--radius-sm);
}

.subScroll::-webkit-scrollbar-thumb {
    background: #b5deff;
    border-radius: var(--radius-sm);
}

.recModalAdd h3,
.edit-modal-title,
.delete-confirmation-title {
    margin: 0 0 30px 0;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-primary);
}

.edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.delete-confirmation-header {
    text-align: center;
    margin-bottom: 20px;
}

/* Формы */
.recUserInfo,
.edit-form-group {
    margin-bottom: 20px;
}

.recUserInfo {
    display: flex;
    gap: 20px 60px;
}

.recUserField span,
.edit-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-primary);
}

.edit-form-label.required::after {
    content: " *";
    color: var(--secondary-color);
}

.recUserField input,
.edit-form-input,
.edit-form-textarea,
.recNewField .recNewFieldInput input,
.recNewField .recNewFieldInput textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    font-size: 14px;
    box-sizing: border-box;
    transition: all .3s;
}

.edit-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.recUserField input:focus,
.edit-form-input:focus,
.edit-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(35, 125, 204, 0.1);
}

.recAddNew {
    margin-bottom: 24px;
    background: #ebf4fc;
    border-radius: var(--radius-md);
}

.recNewHeade {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    background: #d5e7f6;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.recNewFields {
    padding: 14px 18px;
}

.recNewField {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.recNewField .recNewFieldLabel {
    flex: 0 1 100px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

.recNewField .recNewFieldInput {
    flex: 1 1 10%;
}

/* Кнопки - унифицированный стиль */
.recNewSave,
.recNewAnother,
.edit-form-save,
.edit-form-cancel,
.delete-confirm-btn,
.delete-cancel-btn,
.userRecBackBtn,
.addNewRecBtn,
.addFirstRecBtn {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.recNewSave,
.edit-form-save {
    color: white;
    background: var(--primary-color);
}

.recNewSave:hover,
.edit-form-save:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(35, 125, 204, 0.3);
}

.edit-form-save:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.recNewAnother {
    color: white;
    background: var(--primary-color);
}

.recNewAnother:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.edit-form-cancel,
.delete-cancel-btn {
    background: #6c757d;
    color: white;
}

.edit-form-cancel:hover,
.delete-cancel-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.delete-confirm-btn {
    background: var(--secondary-color);
    color: white;
    font-weight: bold;
}

.delete-confirm-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 71, 180, 0.3);
}

/* Контейнер для рекомендаций пользователя */
.curator_userRecomendations {
    display: none;
    margin-top: 20px;
}

.userRecomendationsContainer {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.userRecHeader {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.userRecBackBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
}

.userRecBackBtn:hover {
    background: #eaeaea;
}

.userRecHeader h3 {
    margin: 0 0 0 20px;
    font-size: 18px;
    color: var(--text-primary);
}

.userRecStats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #ebf4fc;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.addNewRecBtn,
.addFirstRecBtn {
    background: var(--primary-color);
    color: white;
}

.addNewRecBtn:hover,
.addFirstRecBtn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.addFirstRecBtn {
    background: var(--success-color);
}

.addFirstRecBtn:hover {
    background: var(--success-hover);
}

/* Таблица рекомендаций */
.userRecTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.userRecTable th {
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.userRecTable td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.userRecRow:hover {
    background: #f8f9fa;
}

.userRecRow.status-unread {
    background: rgba(245, 71, 180, 0.05);
}

.recLink {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-all;
}

.recLink:hover {
    text-decoration: underline;
}

.recComment {
    max-width: 200px;
    word-break: break-word;
}

.recStatus {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.recStatus.status-read {
    background: #d4edda;
    color: #155724;
}

.recStatus.status-unread {
    background: #fff3cd;
    color: #856404;
}

/* Кнопки действий */
.rec-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.edit-btn, .remove-btn {
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    border: 1px solid;
}

.edit-btn {
    background: rgba(35, 125, 204, 0.1);
    color: var(--primary-color);
    border-color: rgba(35, 125, 204, 0.2);
}

.edit-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(35, 125, 204, 0.3);
}

.remove-btn {
    background: rgba(245, 71, 180, 0.1);
    color: var(--secondary-color);
    border-color: rgba(245, 71, 180, 0.2);
}

.remove-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(245, 71, 180, 0.3);
}

/* Уведомления */
.delete-notification,
.edit-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    z-index: 9999;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
    font-size: 14px;
}

.delete-notification.success,
.edit-notification.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.delete-notification.error,
.edit-notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.delete-notification .close-btn,
.edit-notification .close-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    padding: 0 5px;
}

.delete-notification .close-btn:hover,
.edit-notification .close-btn:hover {
    opacity: 1;
}

/* Загрузка и ошибки */
.loadingContainer,
.errorContainer {
    text-align: center;
    padding: 60px 20px;
}

.loadingSpinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.edit-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

.errorIcon {
    font-size: 48px;
    margin-bottom: 20px;
}

.noRecomendations {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.noRecomendationsMsg {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
    from { 
        opacity: 1; 
        transform: translateX(0); 
    }
    to { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
}

@keyframes slideOut {
    from { 
        max-height: 100px;
        opacity: 1;
        padding: 12px;
    }
    to { 
        max-height: 0;
        opacity: 0;
        padding: 0 12px;
        margin: 0;
    }
}

@keyframes highlightRow {
    0% { background-color: transparent; }
    50% { background-color: rgba(35, 125, 204, 0.1); }
    100% { background-color: transparent; }
}

.updated-row {
    animation: highlightRow 1s ease;
}

.deleting-row {
    background-color: #fff3cd !important;
    transition: all 0.3s ease;
}

.deleting-row td {
    transition: all 0.3s ease;
}

/* Адаптивность */
@media (max-width: 992px) {
    .curator_messages {
        flex-wrap: wrap;
    }
    .curator_messages .curator_messageSections {
        order: 2;
    }
}

@media (max-width: 768px) {
    .userRecTable {
        display: block;
        overflow-x: auto;
    }
    
    .userRecStats {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .recUserInfo {
        flex-direction: column;
        gap: 15px;
    }
    
    .curator_messageControls {
        flex-wrap: wrap;
    }
    
    .edit-form-actions,
    .delete-confirmation-buttons {
        flex-direction: column;
    }
    
    .edit-form-save,
    .edit-form-cancel,
    .delete-confirm-btn,
    .delete-cancel-btn {
        width: 100%;
    }
}

/* Рекомендации в уроке */
:root {
  --font-family: "Montserrat", sans-serif;
}

.recommendations-container {
    margin: 20px 0;
    padding: 30px;
    
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fbfbfb;
}

.recommendations-header h1 {
    margin: 0 0 20px;
    
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    color: #2e3a53;
}

.recommendation-card {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    
    padding: 4px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    
    background: #fff;
}

.recommendation-card > * {
    width: 100%;
}

.recommendation-title {
    padding: 10px;
    
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #2e3a53;
    
    border-radius: 3px;
    background: #ebf4fc;
}

.recommendation-description {
    padding: 0 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.4;
}

.recommendation-date {
    margin-top: 15px;
    font-size: 14px;
    opacity: .5;
}

.recommendation-actions {
    padding: 10px;
}

.recommendation-link {
    padding: 5px 10px;
    
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #39663c;
    
    border-radius: 3px;
    background: #9dc989;
    border: 1px solid transparent;
    
    transition: all .3s;
}

.recommendation-link:hover {
    text-decoration: none;
    color: #9dc989;
    background: #fff;
    border: 1px solid #9dc989;
}

.no-recommendations {
    padding: 16px 10px 10px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}

.no-recommendations h3 {
    margin: 0 0 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: #2e3a53;
}

.no-recommendations p {
    font-family: var(--font-family);
    font-size: 14px;
}