/* host.css */
@import url('./base.css');
* {
  font-family: 'Poppins', sans-serif !important;
}

body {
    /* font-family: 'Playfair Display', serif; */
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;  
    margin: 0; 
    
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

.container {
    max-width: 1800px;
    padding: 3rem;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
    width: 100%;
    max-width: 1000px;
    
    margin: 20px 0 40px;
}

.form-title {
    color: #405735;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-top: 0;
}

.form-group {
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
input[type="text"],
input[type="email"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
.team-container {
    background-color: #f5f7fa;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.btn {
    background-color: #6B7B5A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #304227;
}
.btn-danger {
    background-color: #e74c3c;
}
.btn-danger:hover {
    background-color: #c0392b;
}
.add-team-btn {
    display: block;
    margin: 20px 0;
    background-color: #6B7B5A;
}
.add-team-btn:hover {
    background-color: #304227;
}
.submit-container {
    margin-top: 30px;
    text-align: center;
}
.submit-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
}
.location-container {
    margin-top: 20px;
}

#location {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#map {
    height: 300px;
    width: 100%;
    border-radius: 5px;
    background-color: #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container > p {
  margin-bottom: 2rem;
}
