/* Goal Card Button Styling */
.goal-card .card-footer {
    padding: 0.5rem !important; /* Reduce padding */
}

.goal-card .btn-toolbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Set compact button styles */
.goal-card .card-footer .btn {
    padding: 0.15rem 0.4rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    max-width: 31%;
}

/* Remove margin from icons to save space */
.goal-card .card-footer .btn i {
    margin-right: 3px;
    font-size: 0.8rem;
}

/* Make Edit button slightly smaller */
.goal-card .card-footer .btn-outline-primary {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* For extra small screens, adjust layout */
@media (max-width: 350px) {
    .goal-card .card-footer .btn {
        font-size: 0.7rem;
        padding: 0.1rem 0.25rem;
    }
    
    .goal-card .card-footer .btn i {
        margin-right: 2px;
        font-size: 0.7rem;
    }
}