body {
    margin: 0;
    padding: 40px;
    background: #eef4ff;
    font-family: 'Segoe UI', sans-serif;
}

/* CONTENEDOR */
.dashboard {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.dashboard-header {
    margin-bottom: 35px;
}

    .dashboard-header h1 {
        margin: 0;
        font-size: 38px;
        color: #1e293b;
    }

    .dashboard-header p {
        margin-top: 8px;
        color: #64748b;
        font-size: 16px;
    }

/* GRID */
.gadgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

/* TARJETAS */
.gadget-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04), 0 12px 30px rgba(59,130,246,0.08);
    overflow: visible;
    position: relative;
}


.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.gadget-top h2 {
    margin: 0;
    font-size: 24px;
    color: #0f172a;
}

.gadget-top span {
    color: #64748b;
    font-size: 14px;
}

/* INPUT */
.calendar-input {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 2px solid #dbeafe;
    background: #f8fbff;
    font-size: 16px;
    color: #1e293b;
    box-sizing: border-box;
}

/* PLACEHOLDER */
.placeholder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    background: linear-gradient( 135deg, #f8fbff, #eef4ff );
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.placeholder-content h3 {
    margin: 0;
    color: #334155;
}

.placeholder-content p {
    margin-top: 8px;
    color: #94a3b8;
}
.gadget-page .modal-calendar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 999999 !important;
}
.gadget-page .gadget-body {
    position: relative;
}
.button--raised {
    color: #fff !important;
    background: #c7893e !important;
    text-transform: uppercase;
    letter-spacing: .75px;
    font-size: 1rem;
    background: #c7893e !important;
    background: linear-gradient(to right, #c7893e, #bd7114) !important;
    border-radius:5px !important;
}