/**
 * WocHub - Genel Stiller
 * Tüm sayfalar için ortak temel ve layout stilleri
 */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.main {
    flex: 1;
    padding: 2.5rem 0;
    min-height: calc(100vh - 180px); /* Header + Footer için alan */
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* FontAwesome Icons - Genel */
.btn-icon-plus::before {
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    content: '\f067';
    margin-right: 0.5rem;
    line-height: 1;
}

.modal-close::before {
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    content: '\f00d';
    font-size: 1.25rem;
    line-height: 1;
    color: #666666;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    font-size: 4rem;
    color: #888888;
    position: relative;
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
