body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f7;
    color: #333;
}

.container {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

input[type="file"] {
    padding-top: 10px;
}

h2 {
    font-weight: 300;
}

#top-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #000;
    border-color: #000;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #333;
    border-color: #333;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #aaa;
    box-shadow: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.btn-secondary {
    background-color: #ddd;
    border-color: #ddd;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #bbb;
    border-color: #bbb;
}
.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 5px;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.custom-file-upload label {
    border: 1px solid #ccc;
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    background-color: #f5f5f7;
    transition: background-color 0.2s;
}

.custom-file-upload label:hover {
    background-color: #e1e1e3;
}

.custom-file-upload span {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.screenshot-upload svg {
    vertical-align: middle;
    margin-right: 5px;
}
.feature-problem-section {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.section-label {
    font-weight: 500;
    font-size: 18px;
}

.styled-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
}

.screenshot-label {
    font-weight: 400;
    margin-top: 15px;
}

.add-btn {
    background-color: #007aff;
    border: none;
    color: #fff;
    margin-bottom: 20px;
}
.problem-badge {
    display: none; 
 
    top: 10px; 
    right: 10px; 
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
    z-index: 10;
}


.feature-badge {
    display: none; /* Initially hidden until we have features */
    top: 10px; /* Adjust according to your design */
    right: 10px; /* Adjust according to your design */
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
    z-index: 10; /* to ensure it's above other elements */
}

