.right-panel {
    width: 400px;
    background-color: #111111;
    padding: 40px;
    height: 100vh;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
}
.right-panel h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}
.right-panel p {
    font-size: 14.5px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #cccccc;
}
.subscription-form {
    margin-top: 30px;
}
.subscription-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #dddddd;
}
.subscription-form input[type="email"] {
    width: 100%;
    padding: 12px;
    background-color: #222222;
    border: 1px solid #444444;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 10px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-switch input:disabled + .slider {
    background-color: #555555;
    cursor: not-allowed;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #0a9a0b;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.toggle-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.status-light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}
.email-display-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #dddddd;
    margin-bottom: 15px;
}
.edit-email-icon {
    margin-left: 10px;
    cursor: pointer;
    fill: #dddddd;
    transition: fill 0.2s;
}
.edit-email-icon:hover {
    fill: #ffffff;
}
.save-email-btn {
    background-color: #0a9a0b;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 10px;
}
.save-email-btn:hover {
    background-color: #0b7b0a;
}