div.absolute {
  position: absolute;
  width: 50%;
  bottom: 20px;
} 

a {
    text-decoration: none;
  }
  html,body {
    font-family: 'Arial', sans-serif;
    font-size:14px;
    /* Use Arial as the primary font, with fallback to generic sans-serif */
    line-height: 1.6; /* Adjust line height for readability */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}
.content-wrapper {
    margin-top:45px;
}
#config-arrow {
  transition: transform 0.3s ease; /* Smooth rotation animation */
}

#connect_btn {
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btnlogout {
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    padding: 10px 20px;
    box-sizing: border-box;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
}

body {
    padding-bottom: 60px;
}
/* ===== Modal ===== */
.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Modal header ===== */
.modal-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eef0f4;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.modal-title {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

/* ===== Modal body ===== */
.modal-body {
    padding: 22px;
}

/* ===== Modal footer ===== */
.modal-footer {
    padding: 16px 22px;
    border-top: 1px solid #eef0f4;
    background: #fafafa;
}

/* ===== Inputs inside modal ===== */
.modal .form-group {
    margin-bottom: 18px;
}

.modal label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.modal .form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.modal .form-control:hover {
    border-color: #cbd5e1;
}

.modal .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    outline: none;
}

/* ===== Select ===== */
.modal select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);

    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 13px) calc(50% - 3px);

    background-size: 5px 5px;
    background-repeat: no-repeat;

    padding-right: 40px;
}

/* ===== Tables inside modal ===== */
.modal .table {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.modal .table thead {
    background: #f8fafc;
}

.modal .table thead th {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 16px;
}

.modal .table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
}

.modal .table tbody tr:hover {
    background: #f8fafc;
}
/* ===== SOLO botones dentro de modales ===== */

.modal .btn {
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.modal .btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
}

.modal .btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    transform: translateY(-1px);
}