body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #1b1d1c;
            color: #fff;
            line-height: 1.1;
            padding: 20px;
        }
        img {
  pointer-events: none;
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-select: -moz-none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
}
        #app-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #282b2d;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 10px;
        }

        h1, h2 {
            color: #ffffff;
            text-align: center;
        }

        /* Estilo para los botones de las pestañas */
        .tab-button {
            background-color: #1b1d1c;
            border: none;
            padding: 6px 11px;
            margin: 0 1px;
            cursor: pointer;
            border-radius: 16px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        
        .tab-button:hover {
            background-color: #a3a9b1;
            transform: translateY(-2px);
        }

        /* Estilo para los elementos de formulario y botones de acción con tonos oscuros */
        input[type="text"], input[type="number"], input[type="date"], input[type="time"], input[type="file"] {
            width: calc(100% - 12px);
            padding: 8px;
            margin-bottom: 10px;
            background-color: #1b1d1c;
            color: #fff;
            border: 1px solid #4b5051;
            border-radius: 9px;
            box-sizing: border-box;
            font-family: inherit;
        }
        
        /* Estilo para el placeholder de los inputs */
        input[type="text"]::placeholder, input[type="number"]::placeholder, input[type="date"]::placeholder, input[type="time"]::placeholder {
            color: #bdc3c7;
        }
        /* Estilo para el input de archivo (oculto) */
        input[type="file"] {
            display: none;
        }

        /* Estilo para el label que simula el input de archivo */
        .custom-file-upload {
            display: inline-flex;
            align-items: center;
            padding: 8px 12px;
            cursor: pointer;
            background-color: #1b1d1c;
            border: 1px solid #4b5051;
            color: #ffffff;
            border-radius: 18px;
            transition: background-color 0.3s ease;
            margin-bottom: 10px;
        }
        
        .custom-file-upload:hover {
            background-color: #5C6264;
        }

        .custom-file-upload span {
            margin-left: 8px;
            color: #fff;
        }
        
        button {
            background-color: #4b86f1;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        
        button:hover {
            background-color: #305CAF;
        }

        /* Estilo para el texto más pequeño en misiones y notas */
        .small-text {
            font-size: 0.9em;
            color: #fff;
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        
        /* Reducir espacio entre elementos de lista */
        .list-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .list-item:last-child {
            border-bottom: none;
        }
        
        hr {
            border: 0;
            height: 1px;
            background-color: #eee;
            margin: 10px 0;
        }
        
        center {
            margin-bottom: 10px;
        }