/* Planning Deployment Manager - Main Styles */
/* This file imports all other stylesheets */

@import url('./base.css');
@import url('./dashboard.css');
@import url('./logs.css');
@import url('./deployments.css');
@import url('./maintenance.css');
@import url('./login.css');

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: #7f8c8d;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

/* Grid Utilities */
.grid {
    display: grid;
}

/* Shadow Utilities */
.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Border Utilities */
.rounded {
    border-radius: 4px;
}

.rounded-lg {
    border-radius: 8px;
}

.border {
    border: 1px solid var(--border);
}

/* Background Utilities */
.bg-white {
    background: white;
}

.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark);
}

/* Display Utilities */
.hidden {
    display: none;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
}
