/* ===== Base ===== */
html {
    font-size: 16px;
}

* {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #212529;
}

/* ===== Headings ===== */
h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}

/* ===== Text ===== */
p,
span,
div,
label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

/* ===== Small Text ===== */
small {
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
}

/* ===== Links ===== */
a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ===== Buttons ===== */
button,
.btn {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

/* ===== Inputs ===== */
input,
textarea,
select {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

/* ===== Tables ===== */
table {
    font-size: 15px;
}

th {
    font-weight: 700;
}

td {
    font-weight: 500;
}

/* ===== Lists ===== */
ul,
ol,
li {
    font-size: 15px;
    font-weight: 500;
}

/* ===== Cards / Dialogs ===== */
.MuiCard-root,
.MuiDialog-root {
    font-family: 'Cairo', sans-serif;
}



.container-custom {
    width: 90%;
    margin: auto;
    display: flex;
}

.package-card {
    border: 2px solid #ddd;
    border-radius: 10px;
}

.package-card:hover {
    border-color: #7b2ff7;
    box-shadow: 0 0 10px rgba(123, 47, 247, 0.2);
}

.package-card.selected {
    border-color: #7b2ff7 !important;
    box-shadow: 0 0 8px rgba(123, 47, 247, 0.5);
}