
         
/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

    
/* iOS Header */
.ios-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
    font-size: 14px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

/* iOS Navbar */
.ios-navbar {
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Content Area */
.ios-content {
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.ios-button {
    background: #007aff;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    transition: background 0.3s ease;
}

.ios-button:hover {
    background: #005ecb;
}

.compact-stats p {
    margin: 4px 0; /* Reduce the spacing between lines */
    font-size: 14px; /* Slightly smaller text */
}

.compact-stats .ios-highlight {
    font-size: 16px; /* Larger text for emphasized rows */
    font-weight: bold; /* Make it bold */
    color: #d32f2f; /* Highlight with a red color */
}

.compact-stats p strong {
    color: #000; /* Ensure bold labels are black */
}
 
        .button-group {
            display: flex;
            gap: 10px;
        }

        .button-group .ios-button {
            flex: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #f0f0f0;
            cursor: pointer;
            font-size: 16px;
        }

        .button-group .ios-button:hover {
            background-color: #e0e0e0;
        }
        .ios-highlight {
            color: red;
            font-size: larger;
            font-weight: bold;
        }
/* iOS Tab Bar */
.ios-tabbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.tab {
    text-align: center;
    flex-grow: 1;
    font-size: 18px;
    color: #999;
    transition: color 0.3s ease;
    cursor: pointer;
}

.tab.active {
    color: #007aff;
    font-weight: bold;
}

/* Form container */
.ios-form {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Labels */
.ios-form label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Input fields */
.ios-form input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    outline: none;
    background: #f8f8f8;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Focus effect */
.ios-form input:focus {
    border-color: #007aff;
    box-shadow: 0 0 6px rgba(0, 122, 255, 0.5);
}

/* Placeholder text */
.ios-form input::placeholder {
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .ios-form {
        padding: 15px;
    }

    .ios-form input, .ios-button {
        font-size: 16px;
        padding: 12px;
    }
}

/* Highlight important results */
.ios-highlight {
    font-size: 20px;
    font-weight: bold;
    color: #007aff;
    margin-top: 10px;
}
 