/* General Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.website-status-checker {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.website-status-checker h1 {
    color: #fcc90e;
    text-align: center;
}

.website-status-checker label {
    color: #fcc90e;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.website-status-checker input[type="url"],
.website-status-checker button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.website-status-checker input[type="url"] {
    background-color: #333;
    color: #fff;
}

.website-status-checker button {
    background-color: #fcc90e;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.website-status-checker button:hover {
    background-color: #e6b800;
}

.website-status-checker #website-status-result {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.website-status-checker #website-status-result p {
    padding: 10px;
    border-radius: 4px;
}

.website-status-checker #website-status-result p.up {
    background-color: #4CAF50;
    color: #fff;
}

.website-status-checker #website-status-result p.down {
    background-color: #f44336;
    color: #fff;
}

.gaming-websites-status-list {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gaming-websites-status-list h2 {
    color: #fcc90e;
    text-align: center;
}

.gaming-websites-status-list .gaming-website-status-item {
    background-color: #2a2a2a;
    padding: 15px;
    margin: 10px;
    border-radius: 4px;
    border: 1px solid #444;
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
}

.gaming-websites-status-list .gaming-website-status-item h3 {
    margin: 0 0 10px;
    color: #fcc90e;
}

.gaming-websites-status-list .gaming-website-status-item p {
    margin: 5px 0;
    color: #fff;
}

.gaming-websites-status-list .gaming-website-status-item .up {
    color: #4CAF50;
}

.gaming-websites-status-list .gaming-website-status-item .down {
    color: #f44336;
}

.gaming-websites-status-list .gaming-website-status-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
