body {
    background: #1a1a1a;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    background: #2c2c2c;
}
th, td {
    border: 1px solid #404040;
    padding: 8px;
    text-align: left;
    color: #8f8a8a;
}

a{
    color: #4e93cf;
}
th {
    background: #333333;
    color: #ffffff;
}
textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    background: #2c2c2c;
    color: #e0e0e0;
    border: 1px solid #404040;
    padding: 10px;
}
input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    background: #2c2c2c;
    color: #e0e0e0;
    border: 1px solid #404040;
}
input[type="submit"] {
    padding: 10px 20px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
input[type="submit"]:hover {
    transform: translateY(-2px);
}
  
.not-found{
    background: #893513;
    color:#fff;
}

/* User Counts Styles */
.user-counts {
    margin-top: 20px;
    padding: 20px;
}

.counts-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2c2c2c 0%, #252525 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 20px;
}

.counts-container h3 {
    color: #8f8a8a;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.counts-container h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.counts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.count-card {
    background: #333333;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.count-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.card-header {
    margin-bottom: 10px;
}

.username {
    color: #8f8a8a;
    font-weight: 600;
    font-size: 16px;
    display: block;
    word-break: break-word;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.count {
    font-size: 28px;
    font-weight: bold;
    color: #3498db;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label {
    color: #a0a0a0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .counts-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .count {
        font-size: 24px;
    }
}