/* Universal files */

body {
    font-family: Arial, sans-serif;
}

.main-container {
    min-height: 100vh;
    margin: auto;
    border-radius: 10px;
    padding: 20px;
}

/* Universal file - End */



/* Home.php */

.heading {
    font-weight: 700;
    font-size: 1.5rem;
}

.subheading {
    color: gray;
    font-size: 0.9rem;
}

.form-control {
    border: none !important;
    border-bottom: 1px solid #000 !important;
    border-radius: 0 !important;
    box-shadow: none;
}

.gender-buttons .btn {
    border: 1px solid #28a745;
    border-radius: 20px;
    padding: 5px 15px;
}

.gender-buttons .btn.active {
    background-color: #28a745;
    color: white;
}

.alphabet-chart {
    margin-top: 20px;
}

.alphabet-chart table {
    width: 100%;
    border-collapse: collapse;
}

.alphabet-chart th,
.alphabet-chart td {
    border: 1px solid #000;
    text-align: center;
    padding: 5px;
}

.alphabet-chart th {
    background-color: #f28c8c;
}

.formDesign {
    border: 2px solid black;
    border-radius: 16px;
    padding: 1rem;
}

.friendly-chart table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
}

.friendly-chart th,
.friendly-chart td {
    border: 1px solid black;
    padding: 10px;
}

.friendly-chart th {
    background-color: purple;
    color: white;
}

.friendly-chart .yes {
    background-color: darkgreen;
    color: white;
}

.friendly-chart .no {
    background-color: red;
    color: white;
}

.friendly-chart .neutral {
    background-color: orange;
    color: white;
}

.fixed-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Home.php - End */



/* Grid view */

.grid-item {
    padding: 15px;
    border: 1px solid black;
    background-color: #ff00006e;
    font-weight: bold;
}

.grid-item.filled {
    background-color: #378c3d;
    color: white;
}

.grid-item.missing {
    background-color: #ff6b6b;
    color: white;
}

.grid-note {
    font-size: 14px;
    color: #555;
    margin: 12px 30px;
}

/* Grid view - End */



/* Remedies view */

.nav-link {
    transition: opacity 0.3s ease;
    color: white !important;
}

.nav-link.active {
    opacity: 0.5;
}

.tab-content img {
    width: 9rem;
    height: auto;
    border-radius: 12px;
    margin: 10px 0;
}

.tab-content ul {
    padding-left: 20px;
}

/* Remedies view - End */



/* Numerology report */
.section-header {
    color: black;
    font-weight: bold;
    padding: 10px;
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);

}

.section-content {
    padding: 15px;
}

.phone-wallpaper {
    width: 100%;
    max-height: 350px;
}

@media screen and (max-width: 520px) {
     .mobile-table-font {
        font-size: calc(100% - 3px);
    }
}

/* Numerology report - End */



/* Premium card */

.plan-card {
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: scale(1.05);
}

/* Premium card - end */
