/* 
==============================================
CONSOLIDATED CSS
==============================================
This file combines all the separate CSS files into one organized stylesheet.
Organized by element types, with related properties grouped together.
*/

/* 
==============================================
RESET & GLOBAL STYLES
==============================================
Basic reset to ensure consistent rendering across browsers
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* 
==============================================
BASE ELEMENT STYLES
==============================================
Basic styling for HTML elements
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  text-align: center;
}

body {
  min-height: 100%;
  display: inline-block;
  margin: 0px auto;
  text-align: center;
  width: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

sup {
  vertical-align: super;
  font-size: 9px;
  font-weight: bold;
}

/* 
==============================================
LAYOUT CONTAINERS
==============================================
Main structural elements and layout containers
*/
#wrapper {
  width: 80%;
  margin: 0 auto;
}

#header {
  background-color: #FFF;
  width: 900px;
  height: 100px;
  padding: 5px;
}

#logo {
  float: left;
  width: 220px;
  height: 90px;
  display: block;
}

#menu {
  height: 50px;
  background-color: #D5DCF9;
  box-shadow: 2px 2px 5px #6C799D;
  width: 82%;
}

#content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 80%;
  height: auto;
  margin: 0 auto;
  background-color: #FFF;
}

#leftcontent {
  order: -1;
  flex-grow: 3;
  width: 80%;
  height: auto;
}

#rightcontent {
  order: 0;
  width: 20%;
  height: auto;
  padding-top: 30px;
  padding-left: 30px;
}

#adcontentflex {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 80%;
  height: auto;
  margin: 0 auto;
  background-color: #FFF;
}

#ad1 {
  order: -1;
  width: 50%;
}

#contact_page_content {
  width: 80%;
  padding-right: 20%;
  margin: 0 auto;
}

.footer {
  position: fixed;
  left: 0%;
  right: 0%;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-color: #D5DCF9;
  color: #000;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
}

/* 
==============================================
EMBED CONTAINER STYLES
==============================================
Styles for embedded content and containers
*/
#embed_container {
  display: flex;
  flex-flow: column;
  height: 500px;
  width: 700px;
}

#embed_header {
  display: flex;
  flex-flow: row;
  height: 12%;
  width: 100%;
  order: 1;
  border: 2px solid #D5DCF9;
  justify-content: space-around;
}

#embed_label {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: bolder;
  text-align: left;
  color: #4A235A;
  font-size: 15px;
}

#div_select {
  position: absolute;
  top: 35px;
}

/* 
==============================================
FORM ELEMENTS
==============================================
Styles for form elements and controls
*/
fieldset {
  padding: 20px;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Verdana, Helvitica, sans-serif;
  border: 1px dotted #D5DCF9;
  color: #4A235A;
  width: 300px;
}

legend {
  padding: 0.1em 0.4em;
  color: #4A235A;
  font-size: 15px; /* Doubled from 11px */
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 2px;
  height: 24px; /* Doubled height */
  text-align: center;
  /*border-bottom: 2px solid #D5DCF9;*/
  display: inline-block;
  position: relative;
}


#legend_results {
  height: 40px;
  width: 100%;
  background: #D5DCF9;
  font-family: 'Rye', serif; 
  font-weight: 400; 
  font-style: normal;
  font-size: 18px;
  color: #4A235A;
  
  /* Add these properties for perfect centering */
  display: flex;           /* Use flexbox for easy centering */
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  text-align: center;      /* Ensure text itself is centered */
}


.submit_button, #export_to_pdf_btn, .btn-primary {
  font-family: 'arial black';
  font-weight: bold;
  color: #ffffff !important;
  font-size: 14px;
  /*text-shadow: 1px 1px 0px #7CACDE;*/
  box-shadow: 1px 1px 1px #BEE2F9;
  padding: 10px 25px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  background: #4A235A;
  background: linear-gradient(to top, #4A235A, #4A235A);
  cursor: pointer;
}


.submit_button:hover, #export_to_pdf_btn:hover, .btn-primary:hover {
  color: #ffffff !important;
  background: #ffffff;
  background: linear-gradient(to top, #4A235A, #F46036);
}

/* PDF Export Container */
#pdf_export_container {
  margin-top: 20px;
  padding: 10px;
  text-align: center;
}

.btn-secondary {
  background: #F46036;
}

.btn-close{
  /*background: #F46036;*/
  border: 2px solid black;
}

#find_button {
  box-shadow: 0px 0px 0px 0px #D5DCF9;
  background-color: #D5DCF9;
  text-align: center;
  border-radius: 15px;
  display: inline-block;
  cursor: pointer;
  color: #4A235A;
  font-family: Verdana;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 54px;
  text-decoration: none;
  text-shadow: 0px 0px 0px #283966;
  outline: none;
}

#find_button:hover {
  background-color: #F93369;
}

#find_button:active {
  top: 1px;
}

.tinputclass1 {
  width: 20em;
  height: 3em;
  text-align: center;
}

.textarea1 {
  width: 25em;
  height: 15em;
  border: 1px solid #D5DCF9;
}

.error {
  display: none;
  margin-left: 10px;
}

.error_show {
  color: red;
  margin-left: 10px;
}

input.invalid, textarea.invalid {
  border: 2px solid red;
}

input.valid, textarea.valid {
  border: 2px solid green;
}

/* 
==============================================
TABLE STYLES
==============================================
Styles for tables and related elements
*/
table, tr, td, th {
  border: 1px solid #D5DCF9;
  border-collapse: collapse;
  padding: 10px;
}

th, td {
  text-align: center;
}

#rtable, #rtable1 {
  width: 100%;
}

#rtable th, #rtable1 th {
  font-family: Arial, Verdana, Helvitica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #4A235A;
}

.blank_row {
  height: 10px !important;
  background-color: #FFFFFF;
}

.rwa_values {
  font-family: Arial, Verdana, Helvitica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #4A235A;
}

.b_std_2 {
  border: 1px solid #D5DCF9;
  background-color: #fff;
  height: 450px;
  text-align: center;
  border-collapse: collapse;
  box-shadow: 5px 5px 5px #999;
}

.b_std_2 td, .b_std_2 th {
  border: 1px solid #D5DCF9;
  padding: 3px 2px;
}

.b_std_2 th {
  width: 10%;
  font-size: 15px;
  font-weight: bold;
  font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
  color: #4A235A;
  background-color: #D5DCF9;
  border-bottom: 2px solid #fff;
}

.td_bstd2_1 {
  font-size: 14px;
  background-color: #D5DCF9;
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
  box-shadow: 2px 2px 2px #999;
}

.td_bstd2_2 {
  font-size: 12px;
  font-weight: bold;
  font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

.table_text_style1 {
  font-size: 20px;
  font-weight: bold;
  color: #4A235A;
  background-color: #D5DCF9;
  border-bottom: 2px solid #fff;
  text-align: center;
  font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

.table_text_style2 {
  background: rgb(222, 232, 241);
  font-size: 15px;
  font-style: italic;
  text-align: left;
  font-family: Verdana, Geneva, sans-serif;
}

.table_text_style3 {
  background: rgb(241, 243, 245);
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  font-family: Verdana, Geneva, sans-serif;
}

.table_text_style4 {
  background: #fff;
  font-size: 13px;
  font-weight: bold;
  color: #4A235A;
  text-align: center;
  font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

/* 
==============================================
BASEL SPECIFIC STYLES
==============================================
Styles specific to Basel elements
*/
.basel3 {
  position: absolute;
  top: 80px;
}

#basel3_main {
  display: flex;
  flex-direction: column;
}

#basel3_find {
  display: flex;
  flex-direction: row;
  width: 250px;
  height: 30px;
}

#basel3_sections {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  height: auto;
}

.basel3_items {
  flex-grow: 1;
  width: 100%;
}

.subscript {
  font-size: 15px;
  font-style: italic;
  color: grey;
  text-align: left;
  background-color: #fff;
}

.tab_basel_3 {
  width: 100%;
  border: 1px solid #D5DCF9;
}

.ul_list1 {
  list-style-type: circle;
  list-style-position: outside;
  margin: 0;
}

#b3expclass .optionclass:focus {
  color: #4A235A;
  background-color: #F93369;
}

#p_tag_spacing {
  line-height: 50px;
  color: white;
}

/* 
==============================================
TABBED NAVIGATION
==============================================
Styles for tabs and tabbed navigation
*/
.basel_tabs_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #fff;
  width: 100%;
  height: auto;
}

.binput {
  position: absolute;
  opacity: 0;
}

.blabel {
  height: 10px;
  padding: 20px 20px;
  cursor: pointer;
  background: #e5e5e5;
  text-align: center;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  font-size: 14px;
  color: #4A235A;
  transition: background 0.1s, color 0.1s;
  border-radius: 10px 10px 0px 0px;
  width: auto;
}

.blabel:hover {
  border-radius: 10px 10px 0px 0px;
}

.blabel:hover:nth-of-type(1) {
  background: #F93369;
}

.blabel:hover:nth-of-type(2) {
  background: rgb(247, 235, 132);
}

.blabel:hover:nth-of-type(3) {
  background: rgb(114, 245, 97);
}

.blabel:hover:nth-of-type(4) {
  background: rgb(92, 229, 247);
}

.blabel:active {
  background: #ccc;
}

.binput:focus + .blabel {
  z-index: 1;
  font-weight: bold;
}

.binput:checked + .blabel {
  background: #D5DCF9;
  border-radius: 15px 15px 0px 0px;
  font-weight: bold;
  color: #4A235A;
  font-family: Arial, Verdana, Helvitica, sans-serif;
}

.panel {
  display: none;
  padding: 5px 5px 5px;
  background: #fff;
  border-top: 1.5px solid #D5DCF9;
  height: auto;
  width: 100%;
  position: relative;
  flex-shrink: 1;
}

.panel.current {
  display: inherit;
}

.binput:checked + .blabel + .panel {
  display: block;
}

/* 
==============================================
NAVIGATION MENU
==============================================
Styles for navigation menus
*/
#tabs25 {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  height: 50px;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Verdana, Helvitica, sans-serif;
  text-transform: uppercase;
}

#tabs25 ul {
  margin: 0px;
  padding: 5px;
  list-style-type: none;
  width: 100%;
  transition: border-color 0.3s ease;
}

#tabs25 ul li {
  display: block;
  float: left;
  margin: 0 1px 0 0;
  
}

#tabs25 ul li a {
  display: block;
  float: left;
  color: #4A235A;
  text-decoration: none;
  padding: 14px 22px 0 22px;
  height: 40px;
}

#tabs25 ul li a:hover, #tabs25 ul li a.current {
  color: rgb(57, 6, 138);
  background: #BDC9EE no-repeat top center;
  
}


.tabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.tabs .tabs-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.tabs .tabs-list li {
  width: 33%;
  float: left;
  margin: 0px;
  margin-right: 2px;
  padding: 10px 5px;
  text-align: center;
  background-color: cornflowerblue;
  border-radius: 3px;
  font-family: "Arial Black", Gadget, sans-serif;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.tabs .tabs-list li:hover {
  cursor: pointer;
}

.tabs .tabs-list li a {
  text-decoration: none;
  color: white;
}

.tabs .tab {
  display: none;
  width: 100%;
  min-height: 250px;
  height: auto;
  border-radius: 3px;
  padding: 20px 15px;
  color: darkslategray;
  clear: both;
}

.tabs .tab h3 {
  border-bottom: 3px solid cornflowerblue;
  letter-spacing: 1px;
  font-weight: normal;
  padding: 5px;
}

.tabs .tab p {
  line-height: 20px;
  letter-spacing: 1px;
}

.active {
  display: block !important;
}

.tabs .tabs-list li.active {
  background-color: lavender !important;
  color: black !important;
}

.active a {
  color: black !important;
}

/* 
==============================================
RWA FORM SPECIFIC STYLES
==============================================
Styles for RWA forms and related elements
*/
.rwaform_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 90%;
  padding: 15px;
  height: auto;
  align-items: center;
  border: 1px dotted #372248;
}

.formitems {
  flex-basis: auto;
  align-self: flex-start;
}

#rwaform {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 2px solid #D5DCF9;
  border-left: 2px solid #D5DCF9;
  border-right: 2px solid #D5DCF9;
  order: 2;
  justify-content: space-around;
  align-items: baseline;
}

#rwaresults {
  order: 3;
}

#calc_result, #calc_result_std {
  width: 90%;
  align-self: center;
  height: auto;
  border: 1px dotted #372248;
}

/* Form element ordering */
#approach_div {order: 1;}
#expclass_div {order: 1;}
#custtype_div {order: 2;}
#bankopt_div {order: 2;}
#mat_div {order: 2;}
#lgd_div {order: 2;}
#pd_div {order: 2;}
#fsize_div {order: 2;}
#beel_div {order: 2;}
#avc_div {order: 2;}
#extrating_div {order: 2;}
#country_div {order: 2;}
#ead_div {order: 3;}
#submit_btn_div {order: 4;}

/* 
==============================================
TYPOGRAPHY & TEXT STYLES
==============================================
Text formatting, fonts, and typography styles
*/
.span_object {
  text-align: center;
  color: #D5DCF9;
  font-size: 10px;
  font-family: Verdana, Geneva, sans-serif;
  word-spacing: 1px;
}

.span_object_error {
  text-align: right;
  font-size: 10px;
  color: red;
  font-family: Verdana, Geneva, sans-serif;
  word-spacing: 1px;
  font-weight: 700;
}

.span_text_1 {
  font-weight: bold;
}

.text_generic_1 {
  font-family: Verdana, Geneva, sans-serif;
  text-align: left;
  color: #4A235A;
  font-size: 15px;
  border: 2px dotted #D5DCF9;
}

#risk_description {
  width:90%;
  height:auto;
}

.text_generic_5 {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
  display: block;
  text-align: left;
  font-size: 15px;
}

.text_disclaimer_1 {
  font-family: Verdana, Geneva, sans-serif;
  text-align: left;
  color: #fd053ff2;
  font-size: 9px;
}

.text_disclaimer_2 {
  font-family: Verdana, Geneva, sans-serif;
  text-align: left;
  color: #E98A15;
  font-size: 7.5px;
}

.text_disclaimer_3 {
  font-family: Verdana, Geneva, sans-serif;
  text-align: center;
  color: #0aa433f2;
  font-size: 10px;
}

.text_disclaimer_4 {
  font-family: Verdana, Geneva, sans-serif;
  text-align: center;
  color: #831871f2;
  font-size: 10px;
}

.text_disclaimer_5 {
  font-family: Verdana, Geneva, sans-serif;
  display: block;
  text-align: center;
  color: #808080;
  font-size: 10px;
}

.text_headline {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  word-spacing: 2px;
  color: #4A235A;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
}

.text_oblique_description {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  word-spacing: 2px;
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  font-style: italic;
  font-variant: normal;
  text-transform: none;
}

.text_links {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  letter-spacing: 0px;
  word-spacing: 2px;
  color: #000000;
  font-weight: 700;
  text-decoration: none solid rgb(68, 68, 68);
  font-style: normal;
  font-variant: normal;
  text-transform: none;
}

.general_heading_text {
  font-family: Arial, Verdana, Helvitica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #4A235A;
  text-align: left;
}

.paraclass1 {
  font-size: 1.2em;
  font-weight: bold;
}

.paraclass2 {
  font-size: 2.0em;
  font-weight: bold;
  text-align: center;
}

.paraclass3 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}
#google_ad_1{
  height:auto;
  width:auto;
}

/* 
==============================================
MISC UI ELEMENTS
==============================================
Various UI components and decorative elements
*/
.cformdiv {
  margin: 0 auto;
  border: 1.5mm ridge #D5DCF9;
  width: 60%;
}

/*.aboutusdiv {
  text-align: left;
  width: 80%;
  padding-right: 20%;
  margin: 0 auto;
}

div.aboutusdiv p {
  text-align: left;
  font-family: Arial, Verdana, Helvitica, sans-serif;
  font-size: 20px;
  color: rgb(32, 10, 199);
}*/

div.cformdiv p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  font-size: 25px;
  color: #fff;
}

.div2 {
  padding-left: 10%;
  padding-right: 80%;
  width: auto;
  height: 75px;
  text-align: center;
}

.div3 {
  padding-left: 10%;
  padding-right: 80%;
  width: 500px;
  height: 300px;
  text-align: center;
}

.ad_div_1 {
  margin: 30px auto;
  margin-left: 10%;
  position: relative;
  width: 78%;
  height: 150px;
}

.ad_div_2 {
  margin: 30px auto;
  margin-left: 10%;
  position: relative;
  width: 78%;
  height: auto;
}

/* 
==============================================
BANNER & DATETIME
==============================================
Styles for banners and datetime displays
*/
#banner_1 {
  display: flex;
  align-content: left;
  width: 75%;
  height: 200px;
  padding-top: 40px;
  padding-bottom: 20px;
  margin: 0;
}

#datetime {
  float: right;
  padding-top: 40px;
  padding-right: 30%;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 16px;
  letter-spacing: -1.4px;
  word-spacing: 2px;
  color: #D5DCF9;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
}

.unit {
  background: linear-gradient(#aaa, #777);
  border-radius: 15px;
  background: rgb(247, 245, 245);
  font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  box-shadow: 0 2px 2px #444;
  color: rgb(7, 213, 250);
  height: 40px;
  line-height: 40px;
  text-shadow: 0 2px 2px #666;
  width: 10%;
  text-align: center;
  margin: 0;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
}

.imgunit {
  flex-grow: 0.7;
  height: 100px;
  text-shadow: 0px 8px 8px rgb(8, 0, 0);
  font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  font-size: 35px;
  color: #fff;
  font-weight: bold;
  margin: 0;
  background: url('../images/union-jack-26119_640.png');
  background-repeat: no-repeat;
  padding-top: 35px;
}

/* 
==============================================
ANIMATIONS
==============================================
CSS animations and keyframes
*/
@keyframes blink {
  50% {
    border-color: #ff0000;
    border: 2px #E74C3C solid;
  }
}

/* 
==============================================
MEDIA QUERIES
==============================================
Responsive design adjustments
*/
@media (min-width: 600px) {
  .blabel {
    width: auto;
  }
  
  .panel {
    order: 99;
  }
}

@media screen and (max-width: 360px) {
  .tabs {
    margin: 0;
    width: 96%;
  }
  
  .tabs .tabs-list li {
    width: 80px;
  }
}

.rye-regular {
  font-family: "Rye", serif;
  font-weight: 400;
  font-style: normal;
}


.aboutusdiv {
            text-align: left;
            width: 50%;
            padding-right: 10%;
            padding-left: 10%;
            margin: 0 auto;
            margin-bottom: 60px; /* Space for footer */
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(108, 121, 157, 0.3);
            padding-top: 20px;
            padding-bottom: 30px;
        }
        
        .aboutusdiv p:first-child {
            font-family: 'Rye', serif;
            font-size: 28px;
            letter-spacing: 1px;
            word-spacing: 2px;
            color: #4A235A;
            font-weight: 400;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #D5DCF9;
            text-align: center;
        }
        
        .aboutusdiv p:nth-child(2) {
            font-family: 'Playwrite US Modern', serif;
            font-size: 22px;
            color: #4A235A;
            font-weight: 400;
            margin-bottom: 20px;
        }
        
        .aboutusdiv p {
            font-family: 'Playwrite US Modern', serif;
            font-size: 14px;
            font-weight: 300;
            color: #4A235A;
            line-height: 1.8;
            margin-bottom: 18px;
            letter-spacing: 0.3px;
        }
        
        .aboutusdiv a {
            color: #4A235A;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .aboutusdiv a:hover {
            color: #F46036;
            text-decoration: underline;
        }
        
        /* Highlight box for email */
        .contact-highlight {
            background-color: rgba(213, 220, 249, 0.3);
            padding: 20px;
            border-left: 4px solid #4A235A;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        
        /* Footer styles */
        .footer {
            position: fixed;
            left: 0%;
            right: 0%;
            bottom: 0;
            width: 100%;
            height: 20px;
            background-color: #D5DCF9;
            color: #000;
            text-align: center;
            font-weight: bold;
            font-size: 13px;
            font-family: 'Playwrite US Modern', serif;
            font-weight: 400;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .aboutusdiv {
                width: 90%;
                padding-right: 5%;
                padding-left: 5%;
            }
            
            #tabs25 {
                width: 95%;
            }
            
            #tabs25 ul li a {
                padding: 14px 10px 0 10px;
            }
            
            .aboutusdiv p:first-child {
                font-size: 24px;
            }
            
            .aboutusdiv p:nth-child(2) {
                font-size: 20px;
            }
            
            .aboutusdiv p {
                font-size: 16px;
            }
        }

            /* Container to match textarea dimensions */
        .share-container {
            width: 700px;
            height: 50px;
            float: left;
            position: relative;
            background-color: #f8f8f8;
            border: 1px solid #D5DCF9;
            border-radius: 4px;
            display: flex;
            align-items: center;
            padding: 0 10px;
            box-sizing: border-box;
            font-family: 'Playwrite US Modern', serif;
        }
        
        /* Share label */
        .share-label {
            color: #4A235A;
            font-weight: 400;
            white-space: nowrap;
            margin-right: 15px;
            font-size: 14px;
        }
        
        /* Social buttons container */
        .social-buttons {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-grow: 1;
        }
        
        /* Individual social buttons */
        .social-button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        
        .social-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .facebook {
            background-color: #3b5998;
        }
        
        .twitter {
            background-color: #1da1f2;
        }
        
        .linkedin {
            background-color: #0077b5;
        }
        
        .email {
            background-color: #D44638;
        }
        
        .whatsapp {
            background-color: #25D366;
        }
        
        /* Copy link section */
        .copy-section {
            display: flex;
            align-items: center;
            margin-left: auto;
            background-color: white;
            border: 1px solid #D5DCF9;
            border-radius: 4px;
            overflow: hidden;
            width: 250px;
        }
        
        .url-display {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 0 8px;
            font-size: 12px;
            color: #666;
            flex-grow: 1;
        }
        
        .copy-btn {
            background-color: #4A235A;
            color: white;
            border: none;
            padding: 6px 10px;
            cursor: pointer;
            font-family: 'Playwrite US Modern', serif;
            font-size: 12px;
            font-weight: 400;
            white-space: nowrap;
        }
        
        .copy-btn:hover {
            background-color: #5B3275;
        }
        
        /* Success tooltip */
        .tooltip {
            position: absolute;
            bottom: -30px;
            right: 10px;
            background-color: rgba(39, 174, 96, 0.9);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 12px;
            display: none;
            z-index: 100;
        }
        
        /* Responsive adjustments */
        @media (max-width: 700px) {
            .share-container {
                width: 100%;
            }
            
            .share-label {
                font-size: 12px;
                margin-right: 8px;
            }
            
            .social-button {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
            
            .copy-section {
                width: 150px;
            }
            
            .copy-btn {
                padding: 6px 8px;
                font-size: 11px;
            }
        }