* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #43be88;
    color: white;
}

header h1 {
    font-size: 20px;
}

header a{
    color: white;
}

.points {
    text-align: center;
    padding: 20px 0 50px 0;
    background-color: #43be88;
    border-radius: 0 0 10px 10px;
}

.points span {
    display: block;
    color: white;
    font-size: 14px;
}

.points h2 {
    font-size: 30px !important;
    color: white;
}

.sign-in-box{
    width:95%;
    margin: auto;
    margin-top: -30px;
    background-color: white;
    border-radius:15px;
    padding:10px 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);

}
.sign-in-box .checkin-button{
    width:100%;
    padding: 8px 10px;
    font-size:14px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    background: linear-gradient(to bottom right, #46d7a6, #04a66f);
    margin-top: 10px;
}

.sign-in-box .checkin-button:hover {
    background: linear-gradient(to top left, #46d7a6, #04a66f);
}

.sign-in-days {
    display: flex;
    justify-content: space-around;
    padding: 5px 0 0px 0;
    /*border-bottom: 1px solid #ddd;*/
   
}

.sign-in-days .day {
    text-align: center;
    color: #fa7c05;
    min-width: 13%;
    max-width: 13%;
    padding: 5px 2px;
    margin: 2px;
     border-radius:15px;
     border:solid 1px #fa7c05;
}
.sign-in-days .day img{
width: 100%;
}

.sign-in-days .day span {
    display: block;
    font-size: 16px;
    color: #fa7c05;
    
   
}
.sign-in-days .day.checked {
   background: linear-gradient(to bottom right, #ffa204, #f97900);
   color:white;
    border-radius:15px;
}
.sign-in-days .day.checked span {
    color: #ffffff;
}
.sign-in-days p{
    color: black;
    font-size:14px;
    width: 13%;
    text-align: center;
}

.exchange {
    width:95%;
    margin: auto;
    padding:10px 5px;
}

.exchange-item {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /*border-bottom: 1px solid #ddd;*/
    box-shadow:0 0 5px rgba(0,0,0,0.1);
    margin: 10px 0px;
    height: 70px;
    border-radius: 5px;
}

.exchange-item .exchange-icon {
    font-size: 1.5em;
    color: #4caf50;
    margin-right: 15px;
    width:20%;
}
.exchange-item .exchange-info{
    width:55%;
    
}
.exchange-item .exchange-info p {
    margin-bottom: 5px;
    text-align: left;
    font-size:14px;
}

.exchange-item button {
    height: 70px;
    width:25%;
    padding: 5px 10px;
    font-size:14px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    background: linear-gradient(to bottom right, #46d7a6, #04a66f);
}

.exchange-item button:hover {
    background: linear-gradient(to top left, #46d7a6, #04a66f);
}

.exchange-item button:hover {
    background-color: #45a049;
}

.exchange-icon img{
   /* width: 40px;
    height: 45px;
    background-image: url('https://cdn.discordapp.com/attachments/1020647595724505099/1241322408024080384/red-envelope.png?ex=6649c714&is=66487594&hm=f91cfe37b4458a441df8c6d9d151b741bf8de99cf0cbdf80aa32cb02e29a0f5a&');
    background-size: cover;
    background-position: center;*/
    width:80px;
    padding:5px;
    height: 70px;
    object-fit: contain;
}

  .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }
        .popup-container input
        { 
            width:100%;
            margin-top:10px;
            padding: 8px;
            border:none;
            border-radius:99px;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
        }
        .popup-container input[type="submit"],.popup-container input[type="button"]{
            color:white;
            font-weight:600;
            background: linear-gradient(to bottom right, #46d7a6, #04a66f);
        }

        .popup-container input[type="submit"]:hover,.popup-container input[type="button"]:hover{
            background: linear-gradient(to top left, #46d7a6, #04a66f);
        }
        .popup {
            background-color: #fff;
            width: 300px;
            padding: 20px;
            border-radius: 5px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        }
        .popup h2 {
            margin-top: 0;
        }
        .close-btn {
            position: absolute;
            top: 5px;
            right: 10px;
            cursor: pointer;
        }
        @media only screen and (max-width: 600px) {
        .sign-in-days .day span {
            font-size:12px;
          }
          }