@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: #dee2f8;
    user-select: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#btn{
	position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s, transform 0.2s;
    font-size:35px;
}

#btn:hover {
    background-color: #0056b3;
    transition-duration:0.2s;
}

h1{
    text-align: center;
    margin: 20px 0;
    color:#001730;
}

#sponsor-list{
    width: 90%;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
}

.entry{
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    display:grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    gap: 10px;
    background-color:rgb(244, 245, 255);
    color:#001730
}

.status-approved{
    color: green;
    font-weight: bold;
}

.status-pending{
    color: orange;
    font-weight: bold;
}

.status-rejected{
    color: red;
    font-weight: bold;
}

#login{
    display:none;
    z-index:2;
    position: fixed;
    top: 0;
    left:0;
    padding-top:100px;
    width:100%;
    height:100%;
    overflow:auto;
    background-color: rgba(0,0,0,0.4);
}

#login-content{
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

#login-content h2{
    text-align: center;
    margin-bottom: 20px;
    margin-top:10px;
}

#login-content input[type="text"], #login-content input[type="password"]{
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#login-content button{
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition-duration:0.2s;
}

#login-content button:hover{
    background-color: #0056b3;
    transition-duration:0.2s;
}

#add{
    display:none;
    z-index:2;
    position: fixed;
    top: 0;
    left:0;
    padding-top:100px;
    width:100%;
    height:100%;
    overflow:auto;
    background-color: rgba(0,0,0,0.4);
}

#add-content{
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

#add-content h2{
    text-align: center;
    margin-bottom: 20px;
    margin-top:10px;
}

#add-content input[type="text"], #add-content input[type="number"]{
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#add-content select{
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#add-content button{
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition-duration:0.2s;
}

#add-content button:hover{
    background-color: #0056b3;
    transition-duration:0.2s;
}