body {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.container {
    display: flex;
    width: 100%;
}

.login-card {
    width: 500px;
    height: 439px;
    background-color: #EDF2FF;
    border: 2px solid #B2BFFF;
    border-radius: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-icon {
    width: 80px;
    height: 80px;
    background-color: #D9E0FF;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 210px;
}

.login-title {
    width: 300px;
    height: 34px;
    font-weight: 700;
    font-size: 28px;
    color: #4D4DB2;
    text-align: center;
    position: absolute;
    top: 130px;
    left: 100px;
}

.input-label {
    font-weight: 400;
    font-size: 16px;
    color: #33334D;
    position: absolute;
}

#id-label {
    top: 190px;
    left: 80px;
}

#password-label {
    top: 250px;
    left: 80px;
}

.input-field {
    width: 220px;
    height: 36px;
    background-color: #F7FAFF;
    border-radius: 18px;
    border: 1px solid #B2BFFF;
    position: absolute;
    left: 130px;
    padding: 0 10px;
}

#username {
    top: 180px;
}

#password {
    top: 240px;
}

.login-button {
    width: 220px;
    height: 48px;
    background-color: #7373D9;
    border-radius: 24px;
    position: absolute;
    top: 320px;
    left: 140px;
    cursor: pointer;
    border: none;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 48px;
    text-align: center;
}

.signup-link {
    position: absolute;
    top: 380px;
    left: 120px;
    width: 260px;
    text-align: center;
}

.sidebar {
    width: 240px;
    background-color: #525252; /* 피그마 디자인에 맞는 연한 회색 배경 */
    padding: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-right: none;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    box-sizing: border-box;
}

.menu-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #BEBEFE; /* 피그마 디자인에 맞는 연보라색 */
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
}

.menu-title.active {
    color: #BEBEFE;
}

.menu-item {
    padding: 8px 0 8px 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: #BEBEE5; /* 피그마 디자인에 맞는 연보라색 */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.menu-item:hover,
.menu-item.active {
    background-color: transparent;
    color: #FFFFFF; /* 피그마 디자인에 맞는 흰색 */
    font-weight: 500;
}

.logout-btn {
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #dc3545;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dc3545;
    background-color: transparent;
    cursor: pointer;
}

.logout-btn:hover {
    background-color: #dc3545;
    color: #fff;
}

/* 회원가입 링크 스타일 */
.signup-link {
    text-align: center;
    margin-top: 20px;
}

#signup-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

#signup-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.content-area {
    margin-left: 240px; /* 사이드바 너비만큼 왼쪽 여백 추가 */
    padding: 40px 50px;
    min-height: 100vh;
    background-color: #ffffff;
    box-sizing: border-box;
}

.graph-area {
    width: 100%;
    height: 400px;
    background-color: #D9D9D9;
    margin-bottom: 30px;
    border-radius: 10px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    height: 120px;
    background-color: #D9D9D9;
    border-radius: 10px;
}

.list-area {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0 50px;
    min-width: 1000px;
}

/* COMPAYOFFICE 전용 스타일 */
.company-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 40px;
    margin: -40px -50px 30px -50px;
    border-radius: 0 0 10px 10px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #667eea;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
}

/* 테이블 스타일 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

/* Form Styles */
.form-area {
    margin: 40px 50px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-left: 50px;
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #1A1A33;
    margin: 0 0 40px 50px;
}

.form-group {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #33334D;
    text-align: right;
}

.form-input {
    padding: 8px 16px;
    border: 1px solid #3366CC;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #F7FAFF;
    color: #666680;
    height: 36px;
    box-sizing: border-box;
    width:500px;
}

.form-input:focus {
    outline: none;
    border-color: #3366CC;
    background-color: #FFFFFF;
}

.form-input:read-only {
    background-color: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
}

.form-textarea {
    padding: 12px 16px;
    border: 1px solid #3366CC;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #F7FAFF;
    color: #666680;
    resize: vertical;
    min-height: 120px;
    box-sizing: border-box;
}

.form-select {
    padding: 8px 16px;
    border: 1px solid #3366CC;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #F7FAFF;
    color: #666680;
    height: 36px;
    box-sizing: border-box;
    /* 커스텀 화살표 스타일 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666680'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.btn-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.btn-save {
    width: 120px;
    height: 40px;
    padding: 8px 16px;
    background-color: #3366CC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-save:hover {
    background-color: #2952a3;
}

.btn-cancel {
    width: 120px;
    height: 40px;
    padding: 8px 16px;
    background-color: #808080;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-cancel:hover {
    background-color: #666666;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
        padding: 20px 0 20px 20px;
    }
    
    .content-area {
        margin-left: 200px;
        padding: 20px;
    }
    
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-header {
        padding: 15px 20px;
        margin: -20px -20px 20px -20px;
    }
}

/* 회원가입 페이지 스타일 - 피그마 디자인 반영 */
.register-container {
    min-height: 100vh;
    background-color: #525252;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.register-card {
    width: 600px;
    min-height: 948px;
    background: #EDF2FF;
    border: 2px solid #B2BFFF;
    border-radius: 32px;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
}

.register-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #4D4DB2;
    text-align: center;
    margin-bottom: 67px;
    line-height: 1.21;
}

.form-row {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36px;
}

.form-label {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #33334D;
    margin-bottom: 0;
    line-height: 1.21;
    height: 36px;
    width: 180px;
}

.register-input-field {
    width: 350px;
    height: 36px;
    padding: 0 12px;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    background: #F7FAFF;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.register-input-field:focus {
    outline: none;
    background: #FFFFFF;
    box-shadow: 0 0 0 2px #B2BFFF;
}

.register-textarea-field {
    width: 350px;
    height: 120px;
    padding: 12px;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    background: #F7FAFF;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.register-textarea-field:focus {
    outline: none;
    background: #FFFFFF;
    box-shadow: 0 0 0 2px #B2BFFF;
}

.email-input-group {
    position: relative;
    width: 350px;
    margin-left: auto;
}

.email-input {
    width: 245px;
    margin-right: 105px;
}

.email-verify-btn {
    width: 93px;
    height: 36px;
    background: #7373D9;
    border: none;
    border-radius: 18px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.email-verify-btn:hover {
    background: #5A5AC0;
}

.email-verify-btn:disabled {
    background: #9999cc;
    cursor: not-allowed;
    opacity: 0.7;
}

.username-input-group {
    position: relative;
    width: 350px;
    margin-left: auto;
}

.username-input {
    width: 245px;
    margin-right: 105px;
    
}

.username-check-btn {
    width: 80px;
    height: 30px;
    background: #3366CC;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.username-check-btn:hover {
    background: #2B59B3;
}

.register-submit-btn {
    width: 260px;
    height: 48px;
    background: #33994D;
    border: none;
    border-radius: 24px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 40px auto 0;
    line-height: 1.21;
}

.register-submit-btn:hover {
    background: #2B8043;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #33334D;
}

.login-link a {
    color: #4D4DB2;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* 이벤트 및 추천 관련 스타일 */
/* Form Styles */
.form-area {
    margin: 40px 50px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-left: 50px;
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #1A1A33;
    margin: 0 0 40px 50px;
}

.form-group {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #33334D;
    text-align: right;
}

.form-input {
    padding: 8px 16px;
    border: 1px solid #3366CC;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #F7FAFF;
    color: #666680;
    height: 36px;
    box-sizing: border-box;
    width:500px;
}

.form-input:focus {
    outline: none;
    border-color: #3366CC;
    background-color: #FFFFFF;
}

.form-textarea {
    padding: 12px 16px;
    border: 1px solid #3366CC;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #F7FAFF;
    color: #666680;
    resize: vertical;
    min-height: 120px;
    box-sizing: border-box;
}

.form-select {
    padding: 8px 16px;
    border: 1px solid #3366CC;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #F7FAFF;
    color: #666680;
    height: 36px;
    box-sizing: border-box;
    /* 커스텀 화살표 스타일 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666680'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.btn-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #3366CC;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.btn-save {
    width: 120px;
    height: 40px;
    padding: 8px 16px;
    background-color: #3366CC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-save:hover {
    background-color: #2952a3;
}

.btn-cancel {
    width: 120px;
    height: 40px;
    padding: 8px 16px;
    background-color: #808080;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-cancel:hover {
    background-color: #666666;
}

/* List Styles */
.list-container {
    margin: 24px 50px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.list-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    background-color: #F2F2F2;
    padding: 16px 0;
    font-weight: 600;
    font-size: 16px;
    color: #33334D;
    text-align: center;
    border-bottom: 1px solid #E6E6E6;
}

.list-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    padding: 16px 0;
    border-bottom: 1px solid #E6E6E6;
    text-align: center;
}

.list-item:nth-child(odd) {
    background-color: #FFFFFF;
}

.list-item:nth-child(even) {
    background-color: #FAFAFA;
}

.list-item:hover {
    background-color: #F5F5F5;
}

.cell {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #4D4D66;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* Status Text */
.status-text {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.status-text.active {
    background-color: #E8F5E8;
    color: #63C363;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-text.inactive {
    background-color: #FFF0F0;
    color: #FF6B6B;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-text.completed {
    background-color: #E6F3FF;
    color: #3366CC;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Detail button */
.btn-detail {
    padding: 6px 12px;
    background-color: #3366CC;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    min-width: 80px;
}

.btn-detail:hover {
    background-color: #2952a3;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 20px;
    margin: 32px 0;
}

.pagination-btn {
    padding: 8px 12px;
    border: none;
    background-color: #F2F2F2;
    color: #4D4D66;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: #3366CC;
    color: #FFFFFF;
}

.pagination-btn:disabled {
    background-color: #F2F2F2;
    color: #9E9EAE;
    cursor: not-allowed;
}

.pagination-btn.active {
    background-color: #3366CC;
    color: #FFFFFF;
}

/* Search Area */
.search-area {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 50px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-select {
    padding: 8px 16px;
    border: 1px solid #D1D1E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #666680;
    height: 40px;
    min-width: 120px;
}

.search-input {
    padding: 8px 16px;
    border: 1px solid #D1D1E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #666680;
    height: 40px;
    min-width: 250px;
}

.search-input::placeholder {
    color: #9E9EAE;
}

.btn-search {
    padding: 8px 16px;
    background-color: #3366CC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    height: 40px;
    min-width: 80px;
}



.search-select select,
.search-input input,
.search-date input {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    height: 36px;
    box-sizing: border-box;
}

.search-select select {
    width: 120px;
    background-color: #F2F2F2;
    color: #4D4D66;
}

.search-input input {
    width: 200px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0 !important;
    color: #666680;
}

.search-date input {
    width: 150px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0 !important;
    color: #666680;
}

.search-input input::placeholder {
    color: #9E9EAE;
}

.search-input input:focus,
.search-date input:focus {
    outline: none;
    border-color: #3366CC !important;
    background-color: #FFFFFF;
}

.search-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-date label {
    font-size: 12px;
    color: #4D4D66;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.search-button,
.btn-search {
    width: 80px;
    height: 36px;
    padding: 8px 16px;
    background-color: #3366CC;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.search-button:hover,
.btn-search:hover {
    background-color: #2952a3;
}

.btn-register {
    width: 120px;
    height: 36px;
    padding: 8px 16px;
    background-color: #63C363;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-register:hover {
    background-color: #4da64d;
}


.btn-primary {
    padding: 8px 16px;
    background-color: #63C363;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    height: 40px;
    min-width: 120px;
}

.btn-primary:hover {
    background-color: #52a352;
}

/* Empty message styles */
.empty-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    text-align: center;
}

.empty-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666680;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #1A1A33;
    margin: 40px 0 24px 50px;
}