/***RECUADROS****/
.T_box{background: #2c2c2c;,border: 2px solid #e38c00;color: #fff;padding: 30px; border-radius: 10px;    border: 2px solid #e38c00;}
.T_input{background-color:#1a1a1a}


/***RECUADROS****/

/**************************************************PRODUCT-PAGE************************************************/
.product-analysis {
    font-family: Arial, sans-serif;
    margin: 20px auto;
    max-width: 1200px;
    color: #fff;
    background: #2c2c2c;
    border: 2px solid #e38c00;
    padding: 20px;
    border-radius: 10px;
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-image {
    width: 280px;
    margin-right: 20px;
    border-radius: 10px;
    border: 2px solid #e38c00;
}

.product-info h1 {
    color: #e38c00;
    font-size: 2rem;
}

.product-info p{margin-bottom: .4rem;}

.T_text_o {
    color: #ff9800;
    font-size: 1.2rem;
}

.sales-chart-section {
    margin: 20px 0;
}

.chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-controls label {
    font-size: 0.9rem;
}

#sales-chart, #price-chart, #stock-chart {
    width: 100%;
    height: 400px;
    background: #1b1b1b;
    border-radius: 10px;
    border: 1px solid #e38c00;
}

.platform-sales {
    margin-top: 20px;
}

.platform-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.platform-item {
    background: #1b1b1b;
    border: 1px solid #e38c00;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 0.9rem;
}
    
    
    
        /* Estilos generales */
        body {
            background-color: #1a1a1a;
            color: #fff;
            font-family: Arial, sans-serif;
            margin: 0;
            padding:0;
        }


        .logo {
            width: 200px;
        }

        .menu {
            display: flex;
            gap: 15px;
        }

        .menu-item {
            position: relative;
        }

        .menu-item:hover .dropdown {
            display: block;
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #444;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            padding: 10px;
        }

        .dropdown a {
            color: #fff;
            text-decoration: none;
            display: block;
            margin: 5px 0;
        }

        .banner {
            text-align: center;
            padding: 20px;
            background: #333;
            margin: 20px 0;
        }

        .table-container {
            padding: 20px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        table th, table td {
            padding: 10px;
            border: 1px solid #444;
            text-align: center;
        }

        .section {
            padding: 20px;
            margin: 20px 0;
            background: #2a2a2a;
        }

        .phase {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .phase-icon {
            margin-right: 10px;
        }

        .link {
            text-align: center;
            margin: 20px;
        }

        .brands {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 10px;
        }

        .brand {
            text-align: center;
            padding: 10px;
            background: #333;
        }
        
        
/* Estilo general de la sección */
.report-section {
    margin: 20px auto;
    max-width: 1200px;
    padding: 10px;
    background-color: #2c2c2c;
    border-radius: 10px;
    border: 2px solid #e38c00;
}

/* Encabezado */
.table-header {
    text-align: center;
    margin-bottom: 20px;
}

.table-header .highlight {
    color: #e38c00;
    font-weight: bold;
}

/* Tabla estilo grid */
.grid-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

/* Celda individual */
.grid-cell {
    text-align: center;
    background-color: #1b1b1b;
    color: #fff;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Bordes naranjas para destacar */
.grid-cell:hover {
    border-color: #e38c00;
    transition: border-color 0.3s ease;
}

/* Texto en las celdas */
.grid-cell p {
    margin: 5px 0;
}

.grid-cell strong {
    color: #e38c00;
}

/* Responsivo */
@media (max-width: 768px) {
    .grid-table {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}


/* Estilo general del header */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #1b1b1b, #2c2c2c);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #e38c00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo-section .logo {
    width: auto;
    max-height: 66px;
}

/* Menú principal */
.menu-section {
    flex: 1;
    margin: 0 20px;
}

.menu-list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight:normal;
}

.menu-item > a:hover {
    background: #e38c00;
}

/* Submenú */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1b1b1b;
    border: 1px solid #444;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    list-style: none;
    padding: 10px 0;
    display: none;
}

.submenu li {
    padding: 0;
}

.submenu li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s ease;
}

.submenu li a:hover {
    background: #e38c00;
}

/* Mostrar submenú en hover */
.menu-item:hover .submenu {
    display: block;
}

/* Extra sección */
.extra-section {
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.extra-section .health-number {
    color: #e38c00;
    font-size: 1.2rem;
}



.production-tracking {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    background: linear-gradient(90deg, #2c2c2c, #1b1b1b);
    border-radius: 10px;
    border: 2px solid #e38c00;
    color: #fff;
    text-align: center;
}

.production-tracking h2 {
    margin-bottom: 20px;
    color: #e38c00;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.phase {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #1b1b1b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.phase img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.phase p {
    margin: 5px 0;
    font-size: 1rem;
}

.phase strong {
    color: #e38c00;
    font-size: 1.5rem;
}

.production-tracking {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    background: linear-gradient(90deg, #2c2c2c, #1b1b1b);
    border-radius: 10px;
    border: 2px solid #e38c00;
    color: #fff;
    text-align: center;
}

.production-tracking h2 {
    margin-bottom: 20px;
    color: #e38c00;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.phase {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #1b1b1b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.phase-icon {
    font-size: 2.5rem;
    color: #e38c00;
    margin-bottom: 10px;
}

.phase p {
    margin: 5px 0;
    font-size: 1rem;
}

.phase strong {
    color: #e38c00;
    font-size: 1.5rem;
}




.performance-analysis {
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
    background: linear-gradient(90deg, #2c2c2c, #1b1b1b);
    padding: 20px 30px;
    border-radius: 10px;
    border: 2px solid #e38c00;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.performance-analysis h2 {
    color: #e38c00;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.performance-analysis p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #d1d1d1;
}

.btn-analytics {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #e38c00, #ff9800);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-analytics i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-analytics:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.brand-list {
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
    padding: 20px 30px;
    background: linear-gradient(90deg, #2c2c2c, #1b1b1b);
    border-radius: 10px;
    border: 2px solid #e38c00;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.brand-list h2 {
    color: #e38c00;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.brand-item {
    background: #1b1b1b;
    border: 1px solid #e38c00;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.brand-item i {
    font-size: 2rem;
    color: #e38c00;
    margin-bottom: 10px;
}

.brand-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.brand-item h3 a {
    color: #e38c00;
    text-decoration: none;
    transition: color 0.3s;
}

.brand-item h3 a:hover {
    color: #ff9800;
}

.brand-item p {
    color: #d1d1d1;
    font-size: 0.9rem;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}


.highlight{color:#e38c00}


/**************************************************PRODUCT-PAGE************************************************/



/***********BOTONES************/

.T_button {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
	background-color:#ededed;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#777777;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:8px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.T_button:hover {
	background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
	background-color:#dfdfdf;
}
.T_button:active {
	position:relative;
	top:1px;
}





.chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.group-selector {
    display: flex;
    align-items: center;
}

.group-selector label {
    margin-right: 8px;
}
        
/***********BOTONES************/





