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

#customWeaponModal .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    max-width: 600px;
    overflow-y: auto;
}

#customWeaponModal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#customWeaponModal .close:hover,
#customWeaponModal .close:focus {
    color: black;
    text-decoration: none;
}

.customWeaponForm {
    display: flex;
    flex-direction: column;
}

.customWeaponForm label {
    margin-top: 10px;
}

.customWeaponForm input,
.customWeaponForm textarea,
.customWeaponForm button {
    margin-top: 5px;
    padding: 8px;
}

.customWeaponForm button {
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

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

.add-custom-weapon-button {
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 4px;
}

.add-custom-weapon-button:hover {
    background-color: #0b7dda;
}