/* Tactical RMM Deployments - Custom Styles */

:root {
    --primary-color: #0d6efd;
    --bg-light: #f8f9fa;
}

body {
    background-color: var(--bg-light);
}

/* Login Page */
.login-card {
    margin-top: 5rem;
}

.login-card .card-header {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.login-card .card-header h4 {
    margin: 0;
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.deployment-url {
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deployment-url a {
    text-decoration: none;
}

.deployment-url a:hover {
    text-decoration: underline;
}

/* Copy Button */
.btn-copy {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1;
}

/* Action Buttons */
.action-buttons {
    white-space: nowrap;
}

.action-buttons .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
}

/* Cards */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Form Styles */
.form-label {
    font-weight: 500;
}

/* Search Box */
.search-box {
    max-width: 300px;
}

/* Responsive Table */
@media (max-width: 768px) {
    .deployment-url {
        max-width: 200px;
    }

    .table-responsive {
        font-size: 0.875rem;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Flash Messages */
.alert {
    margin-bottom: 1rem;
}

/* Notes Column */
.notes-preview {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6c757d;
    font-size: 0.875rem;
}
