body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #000;
    color: #fff;
}

p {
    margin: 0;
}

.container {
    /* margin-top: 100px; */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.input-container {
    margin: 20px 12px 40px 12px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 20px;
}

.inputs-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .inputs-row {
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
}

@media (max-width: 600px) {
    .inputs-row {
        grid-template-columns: 1fr; /* 3 rows if each takes full width */
    }
}
.input-field {
    padding: 8px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    width: -webkit-fill-available;
    height: 1.7rem;
}


.input-field:focus {
    outline: 3px solid #28a745;
}

.submit-button {
    background-color: #28a745;
    color: white;
    padding: 13px 68px;
    font-size: 26px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .1s ease-in-out background-color;
}

.submit-button:hover {
    background-color: #218838;
}

.logs {
    margin-top: 20px;
    padding: 20px;
    background-color: #222;
    border-radius: 10px;
    text-align: right;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.log-entry {
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: right;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
    border-left: 5px solid #28a745;
    position: relative;
}
.log-entry h3 {
    margin: 0;
    color: #28a745;
    font-size: 18px;
}
.log-entry p {
    margin: 5px 0;
    font-size: 16px;
}
.copy-button {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.text-style {
    font-weight: 800;
    font-size: 1.2rem;
}