/* Shared Button Styles for PushCues */
/* Import this file in templates that need consistent button styling */

/* Dashboard Button - Blue primary style */
.dashboard-btn {
    text-decoration: none;
    padding: 8px 16px;
    background: #4A56E2;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.dashboard-btn:hover {
    background: #3d47c4;
}

/* Dashboard Icon */
.dashboard-icon {
    font-size: 18px;
}

/* Secondary Buttons - Gray style for general use */
.btn-secondary {
    text-decoration: none;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #e8e8e8;
    border-color: #ddd;
}

/* Playlist Button - Blue style to match dashboard */
.playlist-btn {
    text-decoration: none;
    padding: 8px 16px;
    background: #4A56E2;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.playlist-btn:hover {
    background: #3d47c4;
}

/* Navigation Bar Buttons - Consistent sizing for navbar */
.nav-btn {
    text-decoration: none;
    padding: 8px 16px;
    background: #4A56E2;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    min-width: 120px; /* Ensure consistent button width */
    min-height: 36px; /* Ensure consistent button height */
    text-align: center;
}

.nav-btn:hover {
    background: #3d47c4;
}

.nav-btn:hover {
    background-color: #e8e8e8;
    border-color: #ddd;
}