/* assets/css/base.css */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inconsolata', monospace;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #ffffff;
}

/* Genel link stilleri için bir sınıf tanımlayalım */
.base-link {
    display: block;
    text-align: center;
    margin: 20px 0;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.base-link:hover {
    text-decoration: underline;
}

/* Genel form input stilleri */
.base-form-input {
    padding: 10px;
    margin: 5px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #2a2a3e;
    color: #e0e0e0;
    font-family: 'Inconsolata', monospace;
}

/* Genel form button stilleri */
.base-form-button {
    padding: 10px 20px;
    margin: 5px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Inconsolata', monospace;
}

.base-form-button:hover {
    background: #357abd;
}

/* Genel liste stilleri için bir sınıf tanımlayalım */
.base-list {
    list-style: none;
    padding: 0;
}

.base-list-item {
    border: 1px solid #444;
    padding: 10px;
    margin: 5px 0;
    background: #2a2a3e;
    border-radius: 5px;
}

.ip-info {
    color: #a0a0c0;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

/* Mobil cihazlar için body padding sıfırlama */
@media (max-width: 768px) {
    body {
        padding: 0;
    }
}