/* ===============================
   Apple-Inspired Professional UI
   =============================== */

body {
    background-color: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1d1d1f;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

/* Title */
h3 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Inputs */
.form-control {
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    padding: 10px 14px;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

/* Primary Button */
.btn-primary {
    background-color: #0071e3;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    padding: 10px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #005bb5;
}

/* Secondary Button */
.btn-outline-secondary {
    border-radius: 12px;
}

/* Result Box */
.alert-success {
    background-color: #f0f8ff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
}

/* Table Styling */
.table {
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background-color: #f5f5f7;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: #f2f2f2;
}

/* Subtle Section Spacing */
.container {
    max-width: 800px;
}

/* ===============================
   Apple-Style Floating Footer Tooltip
   =============================== */

.footer-wrapper {
    position: relative;
    display: inline-block;
}

.footer-text {
    font-size: 0.9rem;
    color: #6e6e73;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-text:hover {
    color: #1d1d1f;
}

/* Floating Email Tooltip */
.email-tooltip-box {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Show on hover */
.footer-wrapper:hover .email-tooltip-box {
    opacity: 1;
    visibility: visible;
}

/* Copy Confirmation */
.copy-confirmation {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #0071e3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* MINUTE trial link styling */

.minute-link {
    color: #0071e3;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.minute-link:hover {
    opacity: 0.7;
}

.version-number {
    color: #6e6e73;
    font-weight: 400;
    margin-left: 4px;
    font-size: 0.85rem;
}

/* Accordion styling for professional feel */
.accordion-button {
    font-weight: 500;
    color: #1d1d1f;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 0.9rem;
    color: #4a4a4a;
}

.accordion-body a.btn {
    margin-top: 0.5rem;
}


