.top-header {
    height: 55px;
    background: #f5f9fd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.profile-login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100vw;
    height: 90vh;
    flex-direction: column;
}


.logo-container {
    position: relative;
    margin-bottom: 40px;
}

.logo-bg {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 235, 180, 0.5);
    border-radius: 15px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
    z-index: 0;
}


.dot {
    width: 10px;
    height: 10px;
    background-color: #ffcc00;
    border-radius: 50%;
    position: absolute;
}

.dot-1 {
    top: 0;
    right: 0;
}

.dot-2 {
    left: 0;
    top: 50%;
}

.dot-3 {
    bottom: 0;
    right: 50%;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.login-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.2s;
}

.login-button:hover {
    background-color: var(--primary-color);
}

.create-account {
    font-size: 14px;
    color: #555;
}

.create-account a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.create-account a:hover {
    text-decoration: underline;
}


body {
    background: #fff;
}

.banner {
    padding: 12px;
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.crown-icon {
    color: #305bb2;
}

.banner a {
    color: #305bb2;
    font-weight: bold;
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.account-title {
    font-size: 20px;
    font-weight: bold;
}

.account-status {
    display: flex;
    align-items: center;
    gap: 16px;
}

.free-trial {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.yellow-crown {
    color: #ffc107;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f18c33;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
}

.sidebar {
    width: 250px;
    background-color: #fff;
    padding: 20px 0;
    border-right: 1px solid #eee;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f18c33;
    color: white;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sidebar-menu li:hover {
    background-color: #f5f5f5;
}

.sidebar-menu li.active {
    background-color: #f5f5f5;
    border-left: 3px solid #305bb2;
}

.sidebar-menu i {
    font-size: 20px;
    color: #555;
}

.content {
    flex: 1;
    padding: 40px;
    background-color: #fff;
}

.content-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.verified-badge {
    display: inline-block;
    background-color: #e6f4ea;
    color: #137333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #305bb2;
    outline: none;
}

.password-input-container {
    position: relative;
    margin-bottom: 20px;
}

.password-input-container .form-input {
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.form-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Material Icons */
.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}



/* Subscription Tab Styles */
.subscription-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.plan-info h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: bold;
}

.plan-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-badge.free {
    background: #e3f2fd;
    color: #1976d2;
}

.plan-badge.pro {
    background: #f3e5f5;
    color: #7b1fa2;
}

.plan-badge.premium {
    background: #fff3e0;
    color: #f57c00;
}

.subscription-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.subscription-status.active {
    background: #e8f5e8;
    color: #2e7d32;
}

.subscription-status.inactive,
.subscription-status.expired {
    background: #ffebee;
    color: #c62828;
}

.plan-details {
    display: grid;
    gap: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-label {
    font-weight: 500;
    color: #666;
}

.usage-card,
.features-card,
.actions-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.usage-item {
    margin-bottom: 20px;
}

.usage-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.usage-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #81c784);
    transition: width 0.3s ease;
}

.features-list {
    display: grid;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.feature-icon {
    color: #4caf50;
    font-size: 16px;
}

.feature-icon.disabled {
    color: #ccc;
}

.actions-card {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-upgrade,
.btn-manage,
.btn-refresh {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-upgrade {
    background: #2196f3;
    color: white;
}

.btn-manage {
    background: #ff9800;
    color: white;
}

.btn-refresh {
    background: #4caf50;
    color: white;
}

.expiry-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    font-size: 20px;
}

.warning-text {
    font-weight: 500;
    color: #856404;
}