/*=================================
    Calculator Tools Page Styles
=================================*/

.calculator-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.calculator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
}

.calculator-card i {
    font-size: 2.5rem; /* Slightly smaller for a cleaner look */
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.calculator-card h5 {
    font-weight: 700;
    color: #343a40;
}

.calculator-card p {
    color: #6c757d;
    flex-grow: 1; /* Allows the paragraph to take up available space */
}

.calculator-card .btn {
    margin-top: 1rem;
}
