﻿/* Created on 06-02-2024 for consistancy look textbox size*/

body {
}
 
.report-container {
margin: auto;
width: 98%;
}

.report-heading {
text-align: center;
}

.report-table {
width: 100%;
}

.button-container {
text-align: center;
margin-top: 20px;
}

.button {
margin: 0 10px;
}

.label {
font-weight: bold;
}

.text-search
{
width: 100%;
}
.text-search:focus
{
width: 100px;
box-shadow: 0 0 12px #FF99CC;
border: 1px solid #FF6699;
}
    
.text-Box
{
    width: 100%;
    height: 24px;
    font-family: "Helvetica Neue" ,helvetica,sans-serif;
    font-weight: normal;
    color: rgb(0, 143, 213);
    font-size: 15px;
    padding: 0px 10px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 2px rgb(81, 184, 228) inset;
    border: 1px solid rgb(22, 71, 88);
}
   
.text-Box:focus
{
    width: 100%;
    border: 1px solid #FF6699;
    box-shadow: 0 0 4px 2px #FF99CC; /* Adjust spread and intensity */
}

.text-BoxDate
{
    width: 100%;
    height: 24px;
    font-family: "Helvetica Neue" ,helvetica,sans-serif;
    font-weight: normal;
    color: rgb(0, 143, 213);
    font-size: 15px;
    padding: 0px 10px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 2px rgb(81, 184, 228) inset;
    border: 1px solid rgb(22, 71, 88);
}
   
.text-BoxDate:focus
{
    width: 50%;
    border: 1px solid #FF6699;
    box-shadow: 0 0 4px 2px #FF99CC; /* Adjust spread and intensity */
}


.ddlSearchSection {
width: 100%;
}

.ddlSelectSection {
width: 100%;
}

.textArea
{
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}
.gridtext
{
    width: 100%;
    height: 24px;
    font-family: "Helvetica Neue" ,helvetica,sans-serif;
    font-weight: normal;
    color: rgb(0, 143, 213);
    font-size: 15px;
    padding: 0px 0px 0px 0px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 2px rgb(81, 184, 228) inset;
    border: 1px solid rgb(22, 71, 88);
}
   
.gridtext:focus
{
    width: 100%;
    border: 1px solid #FF6699;
    box-shadow: 0 0 4px 2px #FF99CC; /* Adjust spread and intensity */
}


.text-BoxGrid
{
    width: 90%;
    height: 20px;
    font-family: "Helvetica Neue" ,helvetica,sans-serif;
    font-weight: normal;
    color: rgb(0, 143, 213);
    font-size: 15px;
    padding: 0px 10px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 2px rgb(81, 184, 228) inset;
    border: 1px solid rgb(22, 71, 88);
}
   
.text-BoxGrid:focus
{
    width: 90%;
    border: 1px solid #FF6699;
    box-shadow: 0 0 4px 2px #FF99CC; /* Adjust spread and intensity */
}

/* DROPDOWN  
----------------------------------------------------------*/

.dropdown
{
    width: 100%;
    height: 24px;
    font-family: "Helvetica Neue" ,helvetica,sans-serif;
    font-weight: normal;
    color: rgb(0, 143, 213);
    font-size: 15px;
    padding: 0px 10px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 2px rgb(81, 184, 228) inset;
    border: 1px solid rgb(22, 71, 88);
}


/* Ensure that the container is taking the full width/height of the screen */
 
 #CrystalReportViewer1 {
    display: block !important;
    margin: 0 auto !important;
}

 /* Outer wrapper for centering */
 /* Force outer wrapper to use flexbox centering */
.cr-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}
 .cr-wrapper table {
    margin-left: auto !important;
    margin-right: auto !important;
    display: table !important;
}
/* Optional: limit report width if needed */
.cr-wrapper .CrystalReportViewer,
.cr-wrapper > div {
    max-width: 1000px;
    width: 1000px;
}
