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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  margin: 0;
  padding: 0;
  background-color: #fff;
  /* color: #fff; */
  overflow-x: hidden;
  /* overflow-y:hidden; */
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.modal {
    display: none;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    animation: slideIn 0.3s ease;
    z-index: 1100;
    position: relative;
}

.blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #eee;
}

.modal-header h3 {
    color: #2d5016;
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-body p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.report-form .form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5016;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}


.report-form select:focus,
#reportType:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-secondary {
    background: white;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #4a7c59, #2d5016);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.success-message {
    text-align: center;
    padding: 2rem;
    color: #2d5016;
}

.success-message i {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.success-message h4 {
    margin-bottom: 1rem;
    color: #2d5016;
}
