/* NUG.LT Centrinis Layout */

/* Global */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 15px;
}

/* Override original styles */
body.nug-style {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    color: #000 !important;
    margin: 0 !important;
    padding: 15px !important;
    max-width: none !important;
}

.in {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

/* Main Container */
.main-container {
    width: 100%;
    margin: 0;
    text-align: center;
}

/* Visos lentelės */
.content-table {
    width: 100%;
    margin-bottom: 8px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ccc;
}

/* Visi header'iai */
.content-header {
    background: #475569;
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

/* Visas content */
.content-body {
    background: #fff;
    padding: 15px;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

/* Stats eilutė */
.stats-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.stat-table {
    flex: 1;
    max-width: 150px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ccc;
}

.stat-header {
    background: #475569;
    color: #fff;
    padding: 6px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}

.stat-number {
    background: #fff;
    color: #000;
    padding: 8px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

/* Mygtukai */
.action-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    background: #475569;
    color: #fff;
    border: 1px solid #64748b;
    border-radius: 4px;
}

.action-btn:hover {
    background: #334155;
    color: #fff;
}

/* Character grid */
.character-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.character-card {
    text-align: center;
    padding: 8px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.character-card img {
    width: 64px;
    height: 64px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.char-name {
    font-size: 10px;
    margin-top: 4px;
    font-weight: bold;
}

/* Features grid */
.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-item {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 11px;
    text-align: center;
    margin: 2px;
}

/* Links */
a {
    color: #1d4ed8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .main-container {
        max-width: 100%;
    }
    
    .stats-row {
        flex-wrap: wrap;
    }
    
    .stat-table {
        min-width: 120px;
    }
    
    .character-grid {
        gap: 2px;
    }
    
    .character-card img {
        width: 40px;
        height: 40px;
    }
}
