/*
 * =================================
 * Custom Styles for the Action Center
 * File: action-center.css
 * =================================
*/

.action-center-container {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #eee; /* Adds a nice separator line */
    margin-top: 30px;
}

.primary-cta-wrapper {
    margin-bottom: 25px;
}

.primary-cta-wrapper .btn-lg {
    font-size: 18px;
    padding: 12px 20px;
}

.action-card {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    height: 100%; /* Makes cards in the same row equal height */
    margin-bottom: 20px; /* Adds space on mobile when cards stack */
}

.action-card h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.action-card h3 i {
    margin-right: 10px;
    color: #940f0f; /* Thermwood Red */
}

.action-card ul {
    margin-bottom: 0;
}

.action-card ul li a {
    display: block;
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    transition: all 0.2s ease;
}

.action-card ul li a:hover {
    color: #940f0f; /* Thermwood Red on hover */
    text-decoration: none;
    transform: translateX(3px);
}

.action-card ul li a i {
    margin-right: 12px;
    width: 20px; /* Aligns the text nicely */
    text-align: center;
    color: #777;
}