/* Legacy Support & Utility Classes */

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Forms */
.input-box {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Grid Utilities */
.box-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Typography Utilities */
.heading {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Messages */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message span {
    margin-right: 15px;
}

/* Empty State */
.empty {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    color: var(--text-grey);
    border: 1px dashed #ccc;
}