body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#header {
    /* background-color: #0D47A1; */
    background-color: #4A148C;
}

@font-face {
    font-family: 'Digital-7';
    src: url('../fonts/digital-7 (mono italic).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SquareGame';
    src: url('../fonts/Square Game.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Estilo personalizado para o ícone SVG */
.custom-icon {
    display: inline-block;
    vertical-align: middle;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-right: 10px !important;
    width: 24px;
    height: 24px;
    color: #cccccc;
    opacity: 0.65;
}

.custom-icon:hover {
    color: #ffffff;
    opacity: 0.7
}

.uk-logo {
    font-family: 'SquareGame', monospace;
    font-size: 36px;
}

main {
    background: #000000;
    position: relative;
    height: auto;
}

#info {
    background: #000000;
    padding: 20px;
}

.title-container {
    font-family: 'Digital-7', monospace;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #cecece;
    font-size: 1.5rem;
    z-index: 10;
}

/* Estilo para o contêiner do ícone */
.icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

table {
    margin: 0;
}

/* Estilização do conteúdo principal */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#clock-container {
    text-align: center;
}

/*relativo a data-container */
.banner {
    height: 185px;
    text-align: center;
    margin-bottom: 15px;
}

.banner img {
    max-width: 100%;
    height: auto;
}

#data-container {
    font-family: 'Digital-7', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    min-height: calc(100vh - 200px);
}

.color-a0a0a0 {
    color: #a0a0a0;
    -webkit-text-stroke: 2px #a0a0a0;
    text-shadow:
        0 0 5px rgba(160, 160, 160, 0.8),
        0 0 10px rgba(160, 160, 160, 0.6),
        0 0 15px rgba(160, 160, 160, 0.4),
        0 0 20px rgba(160, 160, 160, 0.2);
}

.color-f89500 {
    color: #f89500;
    -webkit-text-stroke: 2px #f89500;
    text-shadow:
        0 0 5px rgba(248, 149, 0, 0.8),
        0 0 10px rgba(248, 149, 0, 0.6),
        0 0 15px rgba(248, 149, 0, 0.4),
        0 0 20px rgba(248, 149, 0, 0.2);
}

.color-33ff57 {
    color: #33ff57;
    -webkit-text-stroke: 2px #33ff57;
    text-shadow:
        0 0 5px rgba(51, 255, 87, 0.8),
        0 0 10px rgba(51, 255, 87, 0.6),
        0 0 15px rgba(51, 255, 87, 0.4),
        0 0 20px rgba(51, 255, 87, 0.2);
}

.color-3357ff {
    color: #3357ff;
    -webkit-text-stroke: 2px #3357ff;
    text-shadow:
        0 0 5px rgba(51, 87, 255, 0.8),
        0 0 10px rgba(51, 87, 255, 0.6),
        0 0 15px rgba(51, 87, 255, 0.4),
        0 0 20px rgba(51, 87, 255, 0.2);
}

.color-f3ff33 {
    color: #f3ff33;
    -webkit-text-stroke: 2px #f3ff33;
    text-shadow:
        0 0 5px rgba(243, 255, 51, 0.8),
        0 0 10px rgba(243, 255, 51, 0.6),
        0 0 15px rgba(243, 255, 51, 0.4),
        0 0 20px rgba(243, 255, 51, 0.2);
}

.color-ff33f3 {
    color: #ff33f3;
    -webkit-text-stroke: 2px #ff33f3;
    text-shadow:
        0 0 5px rgba(255, 51, 243, 0.8),
        0 0 10px rgba(255, 51, 243, 0.6),
        0 0 15px rgba(255, 51, 243, 0.4),
        0 0 20px rgba(255, 51, 243, 0.2);
}

.buttons button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 140px;
    transition: background-color 0.3s ease;
}

.buttons button.start {
    background-color: #28a745;
    color: white;
}

.buttons button.reset,
button.reset {
    background-color: #dc3545;
    color: white;
}

.buttons button.lap {
    background-color: #007bff;
    color: white;
}

.buttons button.stop {
    background-color: #ffc107;
    color: black;
}

.uk-modal-title {
    color: #ffffff;
}

h1,
h2 {
    color: white;
    margin: 20px 0;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
}

/* Media Query para Telas com largura de 768px ou menos (Tablets e Celulares) */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
        margin: 15px 10px;
    }

    h2 {
        font-size: 20px;
        margin-top: 30px;
        padding: 0 10px;
    }
}