@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lobster&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lobster&family=Pacifico&display=swap');

*{
    margin: 0;
    padding: 0; 
}
::-webkit-scrollbar{
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb{
    background: rgb(237, 237, 237);
    border-radius: 8px;
}
body {
    font-family: 'Playfair Display', serif; 
    width: 100%;
    height: auto;
    /*background: linear-gradient(to right, #6dd5f8, #FFE4E1);*/
    background-color: #c4f0ff;
    padding: 10px;
    
}


/*//////////////////////////////////////////
/////////////////////////////////////////*/
/*HEADER*/
header{
    position: relative;
    transition: 1s linear;
    height: 100%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}
/*HEADER Content*/
header  .contents1{
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
    padding: 30px 30px 10px 30px;
    font-size: 20px;
    background-color: white;
}
header  .contents1 h4{
    font-size: 18px;
    font-family: "Lobster", sans-serif;
}
header  .contents1 .signin{    
    margin-top: -7px;
}
header  .contents1 .signin i{
    font-size: 20px;
    color: rgb(70, 65, 65);
    transition: .3s ease;
}
header  .contents1 .signin i:hover {
    color: #2fc7fa;
}
header  .contents1 .signin .btn {
    position: relative;
    margin-top: -4px;
}
header  .contents1 .signin .btn strong {
    position: absolute;
    top: 0;
    color: red;
}


/*HEADER Content*/
header  .contents2{  
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 10px;
    height: 690px;
}
header  .contents2 h4{
    font-size: 18px;
    font-family: "Lobster", sans-serif;
}
header  .contents2 .divideone{
    width: 70%;
    padding: 20px 20px 0 20px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: white;
    position: relative;
}
header  .contents2 .divideone .calendar-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); 
    grid-gap: 0.5rem;   
}
header  .contents2 .divideone .calendar-grid .calendar-card{
    border: 2px solid #2fc7fa;
    padding: 10px;
    border-radius: 10px;
}
header  .contents2 .divideone .calendar-grid .calendar-card h3 {
    font-size: 20px;
}
header  .contents2 .divideone .calendar-grid .calendar-card p {
    font-size: 14px;
    color: #666;
    margin-top: -5px;
}
header  .contents2 .divideone .subdivide{  
  padding-top: 20px;
}
header  .contents2 .divideone .subdivide .user-tab{
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: start;
}
header  .contents2 .divideone .subdivide .user-tab .user-earn{
    width: 40%;
    
}
header  .contents2 .divideone .subdivide .user-tab .user-earn{
    font-size: 13px;
}
header  .contents2 .divideone .subdivide .user-tab .user-info{
    width: 60%;
    list-style: none;
    margin-left: -10px;
    font-size: 13px;
}
header  .contents2 .divideone .subdivide .user-tab .user-info p span{
    color: #2fc7fa;
    font-family: "Lobster", sans-serif;
}
header  .contents2 .divideone .subdivide .progress-submit{
display: flex;
    justify-content: space-between;
    align-items: center;
}
.progress {
    background-color: #f3f3f3; /* Background color of the progress bar */
    border-radius: 5px;
    height: 10px; /* Height of the progress bar */
    overflow: hidden;
    width: 100%;
}
.progress-bar {
    background-color: #2fc7fa; /* Change this color to your desired fill color */
    height: 100%;
    transition: width 0.4s ease; /* Smooth transition for the fill */
}
header  .contents2 .divideone .subdivide .progress-submit button{
    border: none;
    background-color: #2fc7fa;
    color: white;
    font-family: "Lobster", sans-serif;
    padding: 4px 15px;
    border-radius: 10px;
    margin-left: 10px;
}


header  .contents2 .divideone .subdivide .transaction{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transaction-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

.transaction-table th, .transaction-table td {
    border: none;
    padding: 4px;
    font-size: 13px;
    min-width: 120px;
    text-align: left;
}
.transaction-table th {
    background-color: #51d3fe;
    color: white;
}


.transaction-table tbody tr:hover {
    background-color: #f1f1f1; /* Highlight on hover */
}
/* Enable horizontal scrolling */
.scrollable-table {
    overflow-x: auto;
    overflow-y: auto;
    display: block;
    min-height: 285px;
    max-height: 290px;
}


header footer{
    display: none;
}

header  .contents2 .divideone footer{
    display: block;
    padding: 10px 0 0 0;
    text-align: center;
    border-top:  1px solid rgb(53, 53, 53);
    position: absolute;
    width: 94.4%;
    bottom: 0;
    margin-top: -15px;
    background-color: white;
}
header  .contents2 .divideone footer .gradient-text{
    background-image: linear-gradient(to right, #2fc7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: "Lobster", sans-serif;
}
header  .contents2 .divideone footer p{
    color: black;
    font-size: 12px;
    text-align: center;
    margin-top: -10px;
} 



header  .contents2 .dividetwo{
    width: 30%;
    padding: 0;
    border-radius: 20px; 
    margin-left: 10px;
}
header  .contents2 .dividetwo .subdivide1{
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
    background-color: white;
    text-align: start;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
header  .contents2 .dividetwo .subdivide1 .text-container {
    width: 100%;
    height:510px;
    font-size: 12.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 26;
    -webkit-box-orient: vertical;
    cursor: pointer;
    margin: 0 0 6px 0;
}
header  .contents2 .dividetwo .subdivide1 .text-container.expanded {
    height: auto;
    white-space: normal;
    overflow: none;
}
header  .contents2 .dividetwo .subdivide1 .popup-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    padding: 30px;
    font-size: 13px;
    z-index: 2;
}
header  .contents2 .dividetwo .subdivide1 .buttonClose {
    text-align: right;
    padding-right: 20px;
    width: 100%;
    background-color: transparent;
    border: none;
    transition: 0.5s ease;
    cursor: pointer;

}
header  .contents2 .dividetwo .subdivide1 .close-button:hover {
    color: rgb(0, 168, 255);
}

header  .contents2 .dividetwo .subdivide1 ul li{
    font-size: 12px;
}
.links{
    display: flex;
    justify-content: space-between;
}
header  .contents2 .dividetwo .subdivide1 a{
    text-decoration: none;
    font-family: "lobster", sans-serif;
    font-size: 13px; 
    color: #2fc7fa;
    margin-top: -8px;
}
header  .contents2 .dividetwo .subdivide1 a:hover{
    color: black;
}
header  .contents2 .dividetwo .subdivide2{
    background-color: white;
    padding: 17px 10px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
header  .contents2 .dividetwo .subdivide2 .copy-box {
    border: 1px solid #ccc;
    padding: 6px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header  .contents2 .dividetwo .subdivide2 .copy-box input {
    border: none;
    outline: none;
    min-width: none;
    width: 100%;
    flex: 1;
    margin-right: 10px;
    font-size: 14px;
}
header  .contents2 .dividetwo .subdivide2 .copy-box input::placeholder{
    font-size: 12px;
}
header  .contents2 .dividetwo .subdivide2 .copy-button {
    background-color: #2fc7fa;
    color: white;
    border: none;
    padding: 2px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-family: "lobster", sans-serif;
    cursor: pointer;
}




/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-height: 1400.8px)  and (min-height: 900.8px) {
    header  .contents2{
        height: 1270px;
    }
    .scrollable-table {
        max-height: 870px;
    }
    header  .contents2 .dividetwo .subdivide1 .text-container {
        height: 1080px;
        -webkit-line-clamp: 50;
    }
}



/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-height: 1300.8px) and (min-height: 900.8px)  {
    header  .contents2{
        height: 1180px;
    }
    .scrollable-table {
        max-height: 780px;
    }
    header  .contents2 .dividetwo .subdivide1 .text-container {
        height: 990px;
        -webkit-line-clamp: 50;
    }
}



/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-height: 1200.8px) and (min-height: 900.8px) {
    header  .contents2{
        height: 1080px;
    }
    .scrollable-table {
        max-height: 680px;
    }
    header  .contents2 .dividetwo .subdivide1 .text-container {
        height: 880px;
        -webkit-line-clamp: 50;
    }
}



/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-height: 1200.8px) and (min-height: 900.8px) {
    header  .contents2{
        height: 1080px;
    }
    .scrollable-table {
        max-height: 680px;
    }
    header  .contents2 .dividetwo .subdivide1 .text-container {
        height: 880px;
        -webkit-line-clamp: 50;
    }
}



/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-height: 1100.8px) and (min-height: 900.8px) {
    header  .contents2{
        height: 925px;
    }
    .scrollable-table {
        max-height: 520px;
    }
    header  .contents2 .dividetwo .subdivide1 .text-container {
        height: 725px;
        -webkit-line-clamp: 38;
    }
}


/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-width: 768.8px){
    header  .contents2 .divideone .calendar-grid .calendar-card h3 {
        font-size: 16px;
    }
    header  .contents2 .divideone .subdivide .user-tab .user-earn{
    font-size: 11px;
    }
    header  .contents2 .divideone .subdivide .user-tab .user-info{
         font-size: 11px;
    }
    .progress {
    height: 5px; /* Height of the progress bar */
}
header  .contents2 .divideone .subdivide .progress-submit button{
    font-size: 14px;
    padding: 4px 10px;
    margin-left: 8px;
}
    /* Enable horizontal scrolling */
.scrollable-table {
    min-height: 300px;
}
    .transaction-table th, .transaction-table td {
        font-size: 11px;
    }
    header  .contents2 .dividetwo .subdivide1 .text-container {
    font-size: 11px;
    -webkit-line-clamp: 29;
    height:508px;
}

header  .contents2 .dividetwo .subdivide1{
    padding: 20px 10px;
}
header  .contents2 .dividetwo .subdivide1 .popup-box {
    font-size: 11px;
}
}



/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-width: 600.8px){
    header{
        height: auto;
    }
    /*HEADER Content*/
header  .contents1{
    padding: 20px 10px 6px 10px;
    font-size: 14px;
}
header  .contents1 h4{
    font-size: 15px;
}
header  .contents1 .signin{    
    margin-top: -7px;
}
header  .contents1 .signin i{
    font-size: 15px;
}
header  .contents1 .signin .btn {
    margin-top: -4px;
}

header  .contents2{  
    display: block;
    margin-top: 10px;
    height: auto;
}
header  .contents2 h4{
    font-size: 14px;
}
header  .contents2 .divideone{
    width: 100%;
    padding: 10px 10px 0 10px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
header  .contents2 .divideone .calendar-grid{
    grid-gap: 0.3rem;   
}
header  .contents2 .divideone .calendar-grid .calendar-card{
    border: 2px solid #2fc7fa;
    padding: 8px;
}
header  .contents2 .divideone .calendar-grid .calendar-card h3 {
    font-size: 16px;
}
header  .contents2 .divideone .calendar-grid .calendar-card p {
    font-size: 12px;
    margin-top: -10px;
}
header  .contents2 .divideone .subdivide{  
  padding-top: 10px;
}
header  .contents2 .divideone .subdivide .user-tab .user-earn{
    width: 40%;  
    font-size: 11px;  
}
header  .contents2 .divideone .subdivide .user-tab .user-info{
    font-size: 11px;
}
.transaction-table th, .transaction-table td {
    font-size: 11px;
}
.scrollable-table {
    min-height: 150px;
    max-height: 270px;
}
header  .contents2 .divideone footer{
    display: none;
}

header  .contents2 .dividetwo{
    width: 100%;
    padding: 0;
    border-radius: 20px; 
    margin-left: 0;   
}
header  .contents2 .dividetwo .subdivide1{
    height: auto;
    padding: 10px;
    margin-bottom: 0;    
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
header  .contents2 .dividetwo .subdivide1 .text-container {
    height: auto;
    -webkit-line-clamp: 26;
    margin: 0 0 15px 0;
}
header  .contents2 .dividetwo .subdivide1 .popup-box {
    display: none;
}
header  .contents2 .dividetwo .subdivide1 ul li{
    font-size: 11px;
}
header  .contents2 .dividetwo .subdivide1 a{
    font-size: 12px;
    margin-top: -12px;
}
header  .contents2 .dividetwo .subdivide2{
    padding: 0px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
header  .contents2 .dividetwo .subdivide2 .copy-box input {
    font-size: 12px;
}
header  .contents2 .dividetwo .subdivide2 .copy-button {
    font-size: 11px;
}
header footer{
    display: block;
    padding: 10px 0 4px 0;
    text-align: center;
    width: 100%;
    margin-top: 0px;
    border-radius: 15px;
    background-color: white;
}
header footer .gradient-text{
    background-image: linear-gradient(to right, #2fc7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-family: "Lobster", sans-serif;
}
header footer p{
    color: black;
    font-size: 11px;
    text-align: center;
    margin-top: -10px;
}
}



/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-width: 400.8px){
    header  .contents2 .divideone .calendar-grid .calendar-card h3 {
        font-size: 14px;
    }
    header  .contents2 .divideone .calendar-grid .calendar-card p {
    font-size: 10px;
}
}






/*//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
/////////////////////////////////////////
//////////////////////////////////////*/
@media (max-width: 319.8px) {
  body{
    display: none;
  }  
}