/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 80px; /* Space for sticky header */
    padding-bottom: 80px; /* Space for bottom nav */
}

.container {
    max-width: 600px;
    margin: 0 auto;
    /* padding: 1rem; */
    width: 99%;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(69, 160, 73, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 20px;
    padding: 12px 24px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 95%;
}

.sticky-header h1 {
    font-size: 1.25rem;
    margin: 0;
    text-align: center;
}

/* Old Header (deprecated) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.header h1 {
    font-size: 1.5rem;
}

/* Toast notification */
#toast-notification {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
    position: fixed;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
    padding: 6px 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    max-width: calc(100% - 24px);
}

#toast-notification.show-pending {
    display: flex;
    opacity: 1;
    background-color: rgba(157, 180, 211, 0.6);
    backdrop-filter: blur(7px);
    color: #bfdbff;
    border: 1px solid #96c0f7; 
}

#toast-notification.show-error {
    display: flex;
    opacity: 1;
    background-color: rgba(77, 30, 36, 0.6);
    backdrop-filter: blur(7px);
    color: #f5bcbc;
    border: 1px solid #cc5c66;
}

#toast-notification.show-success {
    display: flex;
    opacity: 1;
    background-color: rgba(30, 77, 77, 0.6);
    backdrop-filter: blur(7px);
    color: #b2f0e5;
    border: 1px solid #3aa595;
}

#toast-text {
    font-size: 0.85rem;        
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 6px 10px;
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    max-width: calc(100% - 24px);
}

.nav-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.5rem;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.nav-btn:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.nav-btn.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Cards */
.card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.card h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Login box */
.login-box {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 20vh;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.login-box h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
}

/* Forms */

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0f0f0f;
    color: #fff;
    font-size: 0.85rem;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-primary:disabled {
    background: #666;
    cursor: not-allowed;
}

.btn-secondary {
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #444;
}

/* Info grid */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.1rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    color: #888;
    font-size: 0.9rem;
}

.value {
    color: #fff;
    font-weight: 500;
}

.highlight {
    color: #4CAF50;
    font-weight: 600;
}

/* CSS for feedback-message, used to add asset and add app configuration... */
.feedback-message {
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin: 0.5rem 0;
    text-align: center;
    transition: all 0.2s;
}

.feedback-message:empty {
    display: none;
}

.feedback-message.info {
    background: rgba(157, 180, 211, 0.1);
    color: #bfdbff;
    border: 1px solid rgba(157, 180, 211, 0.3);
}

.feedback-message.error {
    background: rgba(211, 47, 47, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

/* app configuration list */
.app-configuration-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-configuration-item {
    background: #0f0f0f;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.config-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.config-value {
    color: #ccc;
    word-break: break-all;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
}


/* Info box pour la description within configuration*/
.info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem;
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    border-radius: 6px;
}

.info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-box span {
    margin: 0;
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Toggle password button */

.toggle-password {
    position: absolute;
    right: 10px;
    top: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
    transition: opacity 0.2s;
}

.toggle-password:hover {
    opacity: 0.7;
}

.delete-configuration {
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s;
    display: inline-block;
}

.delete-configuration:hover {
    background: rgba(211, 47, 47, 0.2);
    transform: scale(1.1);
}

/* Header de section avec bouton intégré */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.section-header .btn-refresh-inline {
    font-size: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px 8px;
}

.section-header .btn-refresh-inline:hover {
    color: #4CAF50;
    transform: rotate(90deg);
}

.section-header .btn-refresh-inline:disabled {
    opacity: 0.3;
    animation: spin 1s linear infinite;
}

.section-header h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.section-header h2 {
    margin: 0;  /* Annuler la marge du .card h2 */
}

.card .btn-inline {
    font-size: 1.3rem;  /* Légèrement plus grand pour correspondre au h2 */
}



/* Version ultra-minimaliste */
.btn-inline {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px 8px;
}

.btn-inline:hover {
    color: #4CAF50;
    transform: rotate(90deg);
}

.btn-inline:disabled {
    opacity: 0.3;
    animation: spin 1s linear infinite;
}


/* switch design for assets */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

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

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: transform 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4CAF50;
}

input:checked + .slider::before {
  transform: translateX(24px);
}


/* Stablecoins list */
.stablecoins-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stablecoin-item {
    background: #0f0f0f;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.coin-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.coin-balances {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    font-size: 0.85rem;
}

.totals {
    background: #0f0f0f;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Assets list */
.assets-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.asset-item {
    background: #0f0f0f;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #666;
}

.asset-item.active {
    border-left-color: #4CAF50;
}

.asset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.asset-name {
    font-weight: 600;
    color: #fff;
}

.asset-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.asset-extended-details {
    padding: 15px;
    background-color: #0f0f0f;
    border-top: 1px solid #2a2a2a;
    margin-top: 10px;
}

.asset-extended-details.hidden {
    display: none;
}

.extended-details-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.details-section {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


/* pour les h4 qui ne sont pas dans un section-header */
.details-section h4:not(.section-header h4) {
    margin-bottom: 10px;
}

/* Modal overlay to add asset - it's the background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2000; /* Au-dessus de la nav (z-index: 1000) */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Modal content */
.modal-content {
    position: fixed;
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    width: 95%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    bottom: 84px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    margin-bottom: 0;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

/* Modal header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.modal-close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(211, 47, 47, 0.2);
    color: #ff6b6b;
}

/* Modal body */
.modal-body {
    padding: 1.25rem;
}

/* Responsive - largeur maximale sur desktop */
@media (min-width: 768px) {
    .modal-content {
        border-radius: 20px;
        margin-bottom: 2rem;
    }
}

/* Formulaire dans la modal */
.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-body label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.modal-body input[type="text"],
.modal-body select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0f0f0f;
    color: #fff;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}

.modal-body input[type="text"]:focus,
.modal-body select:focus {
    outline: none;
    border-color: #4CAF50;
}

.modal-body input[type="text"]::placeholder {
    color: #666;
}

/* Groupe pour checkbox avec label */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #0f0f0f;
    border-radius: 8px;
    border: 1px solid #333;
    transition: border-color 0.2s;
}

.checkbox-group:has(input:checked) {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.05);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4CAF50;
}

.checkbox-group label {
    flex: 1;
    margin: 0;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Bouton de soumission */
.modal-body button[type="submit"] {
    padding: 0.875rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.modal-body button[type="submit"]:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 5px rgba(76, 175, 80, 0.3);
}

.modal-body button[type="submit"]:active {
    transform: translateY(0);
}

.modal-body button[type="submit"]:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

/* form to edit asset details */
.form-edit-assets {
    display: flex;
    gap: 0.25rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px; /* used to beautify default trade configuration edit */
}

.form-edit-assets label {
    color:#ccc;
    font-size: 0.85rem;
}

.form-edit-assets input[type="number"] {
    width: 15ch;
    padding: 0.4rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0f0f0f;
    color: #ccc;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}

.form-edit-assets input[type="number"]:focus {
    outline: none;
    border-color: #4CAF50;

}

.form-edit-assets-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-top: 1px solid #2a2a2a;
    margin-top: 0.5rem;
}

.form-edit-assets-checkbox label {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-edit-assets-checkbox .switch {
    flex-shrink: 0;
}

.form-edit-assets button[type="submit"] {
    padding: 0.6rem;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.form-edit-assets button[type="submit"]:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 5px rgba(76, 175, 80, 0.3);
}

.form-edit-assets button[type="submit"]:active {
    transform: translateY(0);
}

.form-edit-assets button[type="submit"]:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

/* Section de groupe de champs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
    position: relative;
}

#feedbackMessage {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    font-size: 0.85rem;
    color: #ccc;
}

.config-grid .trade-explanation {
    color:#666;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #0f0f0f;
    border-radius: 6px;
    border-left: 3px solid;
    font-size: 0.85rem;
}

.order-item.buy {
    border-left-color: #4CAF50;
}

.order-item.sell {
    border-left-color: #d32f2f;
}

.order-item span:first-child {
    font-weight: 600;
    color: #fff;
}

.order-item span:nth-child(2) {
    color: #ccc;
}

.order-status {
    font-size: 0.75rem;
    padding: 3px 8px;
    background: #333;
    color: #ccc;
    border-radius: 12px;
}

.last-order {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}

.order-row:last-child {
    border-bottom: none;
}

.order-row .label {
    font-weight: 500;
    color: #888;
    font-size: 0.9rem;
}

.order-row .value {
    color: #fff;
    font-weight: 500;
}

.order-row .value.buy {
    color: #4CAF50;
}

.order-row .value.sell {
    color: #d32f2f;
}

.no-data {
    color: #888;
    font-style: italic;
    margin: 10px 0;
    font-size: 0.9rem;
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #4CAF50;
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s;
    color: #888;
    text-align: center;
}

.asset-see-extended:hover .toggle-icon {
    color: #4CAF50;
    cursor: pointer;
    user-select: none;
    transform: translateX(-50%);
}

.asset-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Badge pour les statuts */
.badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.badge.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.badge.inactive {
    background: rgba(102, 102, 102, 0.2);
    color: #888;
    border: 1px solid #666;
}

.badge:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Messages */
.error-message {
    background: #d32f2f;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.error {
    color: #d32f2f;
}



/* Wallets list */
.wallets-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wallet-item {
    background: #0f0f0f;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.wallet-type {
    font-weight: 600;
    color: #fff;
}

.wallet-id {
    font-size: 0.85rem;
    color: #888;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wallet-value, .wallet-updated {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

/* Sessions list */
.sessions-count {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.session-item {
    background: #0f0f0f;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.session-item.current {
    border-left-color: #4CAF50;
}

.session-info {
    flex: 1;
}

.session-dates {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.session-dates > div {
    margin-bottom: 0.25rem;
}

.btn-revoke {
    padding: 0.5rem 0.75rem;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-revoke:hover {
    background: #b71c1c;
}

/* Bouton de suppression d'un asset */
.btn-delete-asset {
    width: 100%;
    padding: 0.75rem;
    background: rgba(211, 47, 47, 0.1);
    color: #f5bcbc;
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
}

.btn-delete-asset:hover {
    background: rgba(211, 47, 47, 0.2);
    border-color: #d32f2f;
    color: #ff6b6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 5px rgba(211, 47, 47, 0.3);
}

.btn-delete-asset:active {
    transform: translateY(0);
}

.btn-delete-asset:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Section de suppression */
.delete-section {
    background: rgba(77, 30, 36, 0.2);
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.delete-section p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.delete-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(211, 47, 47, 0.1);
    border-left: 3px solid #d32f2f;
    border-radius: 4px;
}

.delete-warning-icon {
    color: #ff6b6b;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.delete-warning-text {
    color: #f5bcbc;
    font-size: 0.85rem;
    margin: 0;
}